forked from iFixit/core-design
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "@core-design/components-react",
"version": "2.6.0",
"description": "React wrappers for Core Design System Components",
"homepage": "https://github.com/iFixit/core-design#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iFixit/core-design.git"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"scripts": {
"build": "npm run clean && npm run compile && npm run rollup",
"clean": "rm -rf dist",
"compile": "npm run tsc",
"tsc": "tsc -p .",
"rollup": "rollup -c"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"@types/node": "^14.0.12",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"np": "^6.5.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"rollup": "^2.15.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"typescript": "^3.9.5"
},
"dependencies": {
"@core-design/components-web": "^2.6.0"
},
"peerDependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
}
}