-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.1 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.1 KB
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
52
53
54
55
56
{
"name": "@xaroth8088/react-planet",
"version": "1.5.1",
"description": "Procedurally generated planets in a React component",
"main": "build/index.js",
"repository": "https://github.com/xaroth8088/react-planet.git",
"author": "Geoffrey Benson <xaroth@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build:watch": "webpack --config webpack.dev.js --color --progress",
"build": "yarn clean && yarn build:wasm && webpack --config webpack.prod.js --color --progress",
"clean": "rimraf build wasm_build demo-page/public/static/js lib/GenerateTexture.js",
"lint": "eslint lib",
"lint:fix": "eslint --fix lib",
"build:wasm": "scripts/build_wasm.sh",
"profile:wasm": "scripts/build_wasm_for_profiling.sh && time node --experimental-wasm-simd --wasm-simd-post-mvp wasm_build/a.out.js && echo \"$(wasm2wat --enable-simd wasm_build/a.out.wasm | grep v128 | wc -l) SIMD stores\" && echo \"$(wasm2wat --enable-simd wasm_build/a.out.wasm | grep f32x4 | wc -l) SIMD f32x4 instructions\" && echo \"$(wasm2wat --enable-simd wasm_build/a.out.wasm | grep i32x4 | wc -l) SIMD i32x4 instructions\"",
"prepublish": "yarn run build"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^1.6.0",
"rimraf": "^3.0.2",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"worker-loader": "^3.0.8"
},
"dependencies": {
"css-color-converter": "^2.0.0",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^17.0.2",
"three": "^0.128.0"
},
"browserslist": [
"last 1 chrome versions",
"last 1 firefox versions",
"last 1 safari versions",
"last 1 ios versions",
"last 1 chromeandroid versions"
]
}