-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.15 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
{
"name": "wasm-webterm",
"version": "0.0.14",
"description": "xterm.js addon to run webassembly binaries (emscripten + wasmer)",
"files": [
"dist/"
],
"main": "./dist/wasm-webterm.js",
"exports": {
".": "./dist/wasm-webterm.js"
},
"scripts": {
"build": "webpack --mode production && rm -rf dist/*.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.2",
"js-untar": "^2.0.0",
"local-echo": "github:wavesoft/local-echo",
"pako": "^2.1.0",
"shell-quote": "^1.8.3",
"xterm-addon-fit": "^0.5.0"
},
"devDependencies": {
"@swc/core": "^1.15.18",
"memfs": "^4.56.11",
"prettier": "^3.8.1",
"process": "^0.11.10",
"swc-loader": "^0.2.7",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"xterm": ">4.9.0 <=4.19.0"
}
}