-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.89 KB
/
package.json
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
61
{
"name": "@legendapp/tools",
"description": "@legendapp/tools",
"sideEffects": false,
"private": true,
"version": "2.0.1",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"**"
],
"exports": {
".": "./index.js",
"./react": "./react.js"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc && cp package.json dist/package.json && rm dist/*.tsbuildinfo && json -I -f dist/package.json -e \"this.private=false; this.devDependencies=undefined; this.scripts=undefined; this['size-limit']=undefined; this.prettier=undefined;\"",
"test": "jest",
"size": "size-limit",
"analyze": "size-limit --why",
"publish:manual": "npm run build && cd dist && npm publish",
"publish:minor": "npm version minor && npm run build && cd dist && npm publish",
"publish:patch": "npm version patch && npm run build && cd dist && npm publish"
},
"peerDependencies": {
"react": ">=16"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"author": "Legend <[email protected]> (https://github.com/LegendApp)",
"keywords": [
"react",
"react-native",
"hooks"
],
"devDependencies": {
"@size-limit/preset-small-lib": "^7.0.8",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"json": "^11.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"size-limit": "^7.0.8",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LegendApp/legend-tools.git"
},
"bugs": {
"url": "https://github.com/LegendApp/legend-tools/issues"
},
"homepage": "https://www.legendapp.com/dev/tools"
}