-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
44
45
46
{
"name": "Rust-wasm",
"version": "1.0.0",
"author": "guanxiaomin <[email protected]>",
"license": "MIT",
"scripts": {
"serve": "webpack-dev-server --mode=development",
"build": "rimraf dist && node --max-old-space-size=4096 node_modules/webpack/bin/webpack.js --mode=development --output-path=./dist --progress",
"build:wasm" :"cargo check && cargo build --target wasm32-wasi"
},
"browser": {
"child_process": false,
"fs": false,
"path": false,
"crypto": false,
"url": false
},
"devDependencies": {
"@types/webpack-env": "^1.16.0",
"@wasm-tool/wasm-pack-plugin": "^1.6.0",
"config": "^3.3.1",
"config-webpack": "^1.0.4",
"copy-webpack-plugin": "9.0.1",
"html-webpack-plugin": "^5.5.0",
"terser-webpack-plugin": "^2.1.0",
"text-encoding": "^0.7.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@PixelPai/net-socket-packet": "git+ssh://[email protected]:PixelPai/net-socket-packet.git",
"@opensource/wasmoon": "^1.14.2",
"@types/emscripten": "^1.39.6",
"@types/offscreencanvas": "^2019.7.0",
"dexie": "^3.2.2",
"git": "^0.1.5",
"phaser": "^3.55.2",
"pixelpai_proto": "git+ssh://[email protected]:PixelPai/pixelpai_proto.git#typescript",
"pkt_wasm": "^0.1.0",
"rimraf": "^3.0.2",
"webworker-rpc": "git+ssh://[email protected]/opensource/webworker-rpc"
}
}