-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "your-package-name-here",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "replace with your git repo url"
},
"main": "dist/bundle.js",
"style": "dist/bundle.css",
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"postcss": "^8.4.28",
"postcss-preset-env": "^9.1.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.0",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"rollup": "^2.79.1",
"rollup-plugin-babel": "^4.4.0",
"style-loader": "^3.3.3"
},
"files": [
"dist",
"src/styles.css"
]
}