-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@speaker-ender/react-position-tools",
"author": "3nder",
"description": "React Position Tools For HTML Elements",
"version": "v0.2.3",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"@speaker-ender/js-measure": "0.3.1",
"@speaker-ender/react-scrollr": "^0.2.2",
"@speaker-ender/react-ssr-tools": "^0.1.4",
"throttle-debounce": "^5.0.0"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@types/throttle-debounce": "^5.0.0",
"esbuild": "^0.14.39",
"esbuild-node-externals": "^1.4.1",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
},
"keywords": [
"react",
"positions"
],
"license": "MIT",
"scripts": {
"build:package": "npm run build:esbuild && npm run build:types",
"build:esbuild": "node build.mjs",
"build:types": "tsc --project tsconfig.build.json",
"clean NPM": "npm ci",
"install NPM": "npm install",
"dev": "npm run dev -w example",
"build": "npm run build -w example",
"start": "npm run start -w example",
"postpublish": "npm run publish-npm",
"publish-npm": "npm publish --access public --ignore-scripts --@speaker-ender:registry='https://registry.npmjs.org'",
"formatAll": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git://github.com/speaker-ender/React-Position-Tools"
},
"bugs": {
"url": "https://github.com/speaker-ender/React-Position-Tools/issues"
},
"workspaces": [
"example"
]
}