-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
47
{
"name": "wasm-webterm",
"version": "0.0.10",
"description": "xterm.js addon to run webassembly binaries (emscripten + wasmer)",
"files": [
"webterm.bundle.js",
"webterm.bundle.js.map"
],
"main": "webterm.bundle.js",
"scripts": {
"build": "webpack --mode production && rm -rf ./*.LICENSE.*",
"dev": "webpack watch --mode development"
},
"keywords": [
"xterm.js",
"emscripten",
"wasmer",
"wasi",
"wasm",
"webassembly",
"js",
"javascript"
],
"author": "cryptool.org",
"license": "Apache-2.0",
"dependencies": {
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"comlink": "^4.4.1",
"js-untar": "^2.0.0",
"local-echo": "github:wavesoft/local-echo",
"pako": "^2.1.0",
"shell-quote": "^1.8.1",
"xterm-addon-fit": "^0.5.0"
},
"devDependencies": {
"memfs": "^4.12.0",
"prettier": "^3.3.3",
"process": "^0.11.10",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"xterm": ">4.9.0 <=4.19.0"
}
}