-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "@thmsgbrt/my-react-component-library",
"version": "1.0.0",
"description": "My personal React component Library - tutorial",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground": "cd playground && npm run start",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thmsgbrt/my-react-component-library.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/thmsgbrt/my-react-component-library/issues"
},
"homepage": "https://github.com/thmsgbrt/my-react-component-library#readme",
"devDependencies": {
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/styled-components": "^4.1.19",
"npm-run-all": "^4.1.5",
"rollup": "^1.25.0",
"rollup-plugin-delete": "^1.1.0",
"rollup-plugin-typescript2": "^0.24.3",
"typescript": "^3.6.4"
},
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2",
"styled-components": "^4.4.0"
},
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}