forked from d3dc/react-godot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "nextjs-godot",
"version": "1.0.0",
"description": "Load a webassembly build of the Godot engine and Bootstrap packed games from within the react component tree. Modified to work with nextJS",
"author": "Shrag",
"license": "MIT",
"repository": "Shragenator/nextjs-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",
"build:css": "cp src/styles.css dist/",
"start": "NODE_ENV=development",
"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",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"typescript": "^3.7.4"
},
"files": [
"dist"
]
}