-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "react-gbajs",
"version": "1.0.4",
"description": "GBA emulator and wrapper for React",
"main": "dist/react-gbajs.js",
"browser": "dist/react-gbajs.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "webpack --watch --mode development --config webpack.config.js",
"build": "webpack --mode production --config webpack.config.js"
},
"author": "macabeus",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/macabeus/react-gbajs.git"
},
"dependencies": {
"@babel/polyfill": "7.7.0",
"@babel/runtime": "7.7.2",
"@babel/plugin-transform-runtime": "7.6.2",
"lodash.clonedeep": "4.5.0"
},
"peerDependencies": {
"@types/react": "17.0.9",
"react": "*"
},
"devDependencies": {
"@babel/core": "7.7.2",
"@babel/preset-env": "7.7.1",
"@babel/preset-react": "7.7.0",
"arraybuffer-loader": "1.0.8",
"babel-loader": "8.0.5",
"typescript": "4.3.2",
"ts-loader": "6.2.1",
"webpack-cli": "3.3.10",
"webpack": "4.41.2"
}
}