-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
62
{
"name": "use-sidecar",
"version": "1.0.2",
"description": "Sidecar code splitting utils",
"main": "dist/es5/index.js",
"devDependencies": {
"@types/detect-node": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"ts-react-toolbox": "^0.2.2"
},
"engines": {
"node": ">=8.5.0"
},
"scripts": {
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test": "ts-react-toolbox test",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"build": "rm -Rf ./dist && ts-react-toolbox build",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze",
"prepublish": "npm run build"
},
"peerDependencies": {
"react": "^16.8.0"
},
"sideEffects": [
"**/medium.js"
],
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"files": [
"dist"
],
"keywords": [
"code spliting",
"react",
"sidecar"
],
"homepage": "https://github.com/theKashey/use-sidecar",
"author": "theKashey <[email protected]>",
"license": "MIT",
"dependencies": {
"detect-node": "^2.0.4",
"tslib": "^1.9.3"
},
"size-limit": [
{
"path": "dist/es2015/index.js",
"size": "1.4kb",
"limit": "100 ms"
}
],
"resolutions": {
"typescript": "^3.0.0"
}
}