-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "react-curtains",
"version": "1.0.10",
"description": "react-curtains is an attempt at converting curtains.js WebGL classes into reusable React components.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"keywords": [
"react",
"webgl",
"curtains.js",
"curtainsjs"
],
"author": {
"name": "Martin Laxenaire",
"email": "martin.laxenaire@gmail.com",
"url": "https://twitter.com/webdesign_ml"
},
"homepage": "https://github.com/martinlaxenaire/react-curtains",
"bugs": {
"url": "https://github.com/martinlaxenaire/react-curtains/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/martinlaxenaire/react-curtains.git"
},
"license": "MIT",
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"dependencies": {
"curtainsjs": ">=8.1.0"
},
"peerDependencies": {
"react": ">=16.13.0",
"react-dom": ">=16.13.0"
},
"devDependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.8.3",
"rollup-plugin-babel": "^4.4.0",
"@rollup/plugin-commonjs": "^15.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup": "^2.21.0"
}
}