-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 905 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 905 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
{
"name": "cockle-test",
"version": "1.0.0",
"description": "Cockle tests",
"license": "BSD-3-Clause",
"author": "Ian Thomas",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": true,
"scripts": {
"build": "rspack build",
"postbuild": "node node_modules/@jupyterlite/cockle/lib/tools/prepare_wasm.js --copy assets",
"serve": "concurrently 'npm run serve:cockle' 'npm run serve:cors'",
"serve:cockle": "rspack serve",
"serve:cors": "HOST=localhost PORT=8881 node node_modules/cors-anywhere/server.js "
},
"devDependencies": {
"@jupyterlite/cockle": "file:../cockle",
"@rspack/cli": "^0.7.5",
"@rspack/core": "^0.7.5",
"concurrently": "^9.2.1",
"cors-anywhere": "^0.4.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}