-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 813 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 813 Bytes
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
{
"name": "cockle-deploy",
"scripts": {
"build": "rspack build",
"postbuild": "npm run postbuild:wasm && npm run postbuild:index",
"postbuild:wasm": "node node_modules/@jupyterlite/cockle/lib/tools/prepare_wasm.js --copy ../serve/cockle/",
"postbuild:index": "cp assets/index.html ../serve/cockle/"
},
"main": "../serve/cockle/index.js",
"types": "../serve/cockle/index.d.ts",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rspack/cli": "^1.0.4",
"@rspack/core": "^1.0.4",
"css-loader": "^7.1.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5"
},
"dependencies": {
"@jupyterlite/cockle": "^1.3.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"deepmerge-ts": "^7.1.4"
}
}