-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "@playos/kernel",
"version": "1.0.0",
"description": "Kernel for PlayOS",
"main": "build/kernel.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"start": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack.config.js --open true --port 1234 --inline",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@jmurp7385/declaration-bundler-webpack-plugin": "^1.0.1",
"@wasmer/io-devices": "^0.6.0",
"@wasmer/wasi": "^0.6.0",
"@wasmer/wasm-transformer": "^0.6.0",
"@wasmer/wasmfs": "^0.6.0",
"asyncify-wasm": "^1.0.0",
"comlink": "^4.2.0",
"ethers": "^4.0.43",
"jest": "^26.0.1",
"keccak": "^2.1.0",
"memfs": "^3.0.4",
"node-fetch": "^2.6.1",
"ts-jest": "^26.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@types/jest": "^25.2.3",
"@types/node": "^13.1.8",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.3",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"workerize-loader": "^1.2.1"
}
}