-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "react-godot",
"version": "1.0.0",
"description": "Load a webassembly build of the Godot engine and Bootstrap packed games from within the react component tree",
"author": "d3dc",
"license": "MIT",
"repository": "d3dc/react-godot",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"test": "react-scripts test",
"build": "NODE_ENV=production tsc",
"build:css": "cp src/styles.css dist/",
"start": "NODE_ENV=development tsc -w",
"prepare": "npm run build && npm run build:css",
"predeploy": "cd example && npm install && npm run build"
},
"dependencies": {},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.0.3",
"@types/jest": "^24.0.25",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typescript": "^3.7.4"
},
"files": [
"dist"
]
}