-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.2 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.2 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
52
53
54
55
56
57
58
{
"name": "webassembly-component-model-experiments",
"version": "0.1.0",
"description": "Terminal REPL with sandboxed multi-language plugin system - unified codebase runs in CLI (Rust) and web (TypeScript)",
"keywords": [
"WebAssembly",
"WebAssembly Component Model",
"WIT",
"wasmtime",
"wit-bindgen",
"repl",
"plugin-system"
],
"homepage": "https://github.com/topheman/webassembly-component-model-experiments#readme",
"bugs": {
"url": "https://github.com/topheman/webassembly-component-model-experiments/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topheman/webassembly-component-model-experiments.git"
},
"author": "Christophe Rosset",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run web-host:build",
"preview": "npm run web-host:preview",
"dev": "npm run web-host:dev",
"build-plugin-echo": "cd packages/plugin-echo && npm run build",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test:e2e:all": "npm run test:e2e:all --workspace=packages/web-host",
"test:e2e:ui": "npm run test:e2e:ui --workspace=packages/web-host",
"test:e2e:all:preview": "npm run test:e2e:all:preview --workspace=packages/web-host",
"test:e2e:ui:preview": "npm run test:e2e:ui:preview --workspace=packages/web-host",
"test:e2e:report": "npm run test:e2e:report --workspace=packages/web-host",
"test:e2e:like-in-ci": "npm run test:e2e:like-in-ci --workspace=packages/web-host",
"typecheck": "npm run typecheck --workspace=*",
"web-host:typecheck": "npm run typecheck --workspace=packages/web-host",
"web-host:build": "npm run build --workspace=packages/web-host",
"web-host:preview": "npm run preview --workspace=packages/web-host",
"web-host:dev": "npm run dev --workspace=packages/web-host",
"prepare": "husky",
"clean:install": "find . -name \"node_modules\" -exec rm -rf '{}' +"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "2.0.5",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22.6.0"
}
}