forked from riddles-are-us/trustless-browser-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.05 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.05 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "zkwasmpg",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"crypto-browserify": "^3.12.0",
"delphinus-curves": "github:DelphinusLab/delphinus-curves",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"process": "^0.11.10",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"web3subscriber": "git+https://github.com/DelphinusLab/delphinus-web3subscriber.git",
"zkwasm-minirollup-browser": "github:DelphinusLab/zkWasm-minirollup-browser",
"zkwasm-minirollup-rpc": "github:DelphinusLab/zkWasm-minirollup-rpc",
"zkwasm-service-helper": "github:DelphinusLab/zkWasm-service-helper"
},
"scripts": {
"start": "npx react-app-rewired start",
"build": "npx react-app-rewired build",
"test": "npx react-app-rewired test",
"eject": "npx react-app-rewired eject",
"publish": "sh publish.sh",
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --validate --sourceMap --debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --validate --sourceMap --optimize",
"asbuild": "npm run asbuild:untouched && npm run asbuild:optimized"
},
"eslintConfig": {
"extends": "react-app"
},
"homepage": "./",
"build": {
"appId": "com.github.zhenxunge.zkwasmpg",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-dom": "^18.0.10",
"@types/sha256": "^0.2.2",
"@types/webpack-env": "^1.18.5",
"typescript": "^4.3.4"
}
}