-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.46 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
{
"name": "semorphe",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:sdk": "node tools/build-sdk.mjs",
"preview": "vite preview",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:capsule": "vitest run src/components",
"test:guard": "vitest run tests/integration/audit-",
"test:watch": "vitest",
"test:e2e": "playwright test",
"build:vscode": "npx tsx tools/build-vscode.ts",
"preflight:vscode": "npm run build:vscode && node tools/vscode-preflight/run.mjs",
"install:ide": "node tools/install-ide.mjs",
"build:wasm:python": "tree-sitter build --wasm node_modules/tree-sitter-python -o public/tree-sitter-python.wasm",
"demo:record": "playwright test --config=tools/demo/playwright.demo.config.ts",
"demo:gif": "bash tools/demo/to-gif.sh"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/markdown-it": "^14.2.0",
"@types/vscode": "^1.125.0",
"@vscode/vsce": "^3.9.2",
"happy-dom": "^20.7.0",
"markdown-it": "^15.0.1",
"tree-sitter-cli": "^0.26.6",
"tree-sitter-cpp": "^0.23.4",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@blockly/field-multilineinput": "^6.0.8",
"blockly": "^12.4.1",
"fflate": "^0.8.3",
"monaco-editor": "^0.52.2",
"tree-sitter-python": "^0.25.0",
"web-tree-sitter": "^0.26.6"
}
}