-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 3.11 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
59
60
61
62
{
"name": "gaeos-creator",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"predev": "node -e \"const{execFileSync}=require('child_process');try{process.platform==='win32'?execFileSync('taskkill',['/F','/IM','gaeos-creator.exe'],{stdio:'ignore'}):execFileSync('pkill',['-f','[g]aeos-creator$'],{stdio:'ignore'})}catch{};try{execFileSync(process.platform==='win32'?'python':'python3',['clear_dev_state.py','--yes','--quiet'],{stdio:'ignore'})}catch{}\"",
"pretauri": "node -e \"const{execFileSync}=require('child_process');try{process.platform==='win32'?execFileSync('taskkill',['/F','/IM','gaeos-creator.exe'],{stdio:'ignore'}):execFileSync('pkill',['-f','[g]aeos-creator$'],{stdio:'ignore'})}catch{};try{execFileSync(process.platform==='win32'?'python':'python3',['clear_dev_state.py','--yes','--quiet'],{stdio:'ignore'})}catch{}\"",
"clear:dev": "python3 clear_dev_state.py --yes",
"dev": "node node_modules/vite/bin/vite.js",
"build": "node node_modules/vite/bin/vite.js build",
"preview": "node node_modules/vite/bin/vite.js preview",
"tauri": "node node_modules/@tauri-apps/cli/tauri.js",
"check": "node node_modules/svelte-check/bin/svelte-check --tsconfig ./tsconfig.app.json && node node_modules/typescript/bin/tsc -p tsconfig.node.json",
"build:broker": "node node_modules/typescript/bin/tsc -p browser-broker/tsconfig.json",
"build:mcp-adapter": "node node_modules/typescript/bin/tsc -p mcp-browser-adapter/tsconfig.json",
"build:browsers": "node node_modules/@playwright/test/cli.js install chromium",
"test:unit": "node node_modules/vitest/vitest.mjs run",
"test:e2e": "node node_modules/@playwright/test/cli.js test",
"test:e2e:chromium": "node node_modules/@playwright/test/cli.js test --project=chromium",
"test:broker": "node tests/broker/smoke.mjs",
"test:mcp": "node tests/mcp/smoke.mjs",
"test:sidecar": "node tests/sidecar/validate.mjs"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "^1.62.1",
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tailwindcss/vite": "^4.3.3",
"@tauri-apps/cli": "^2.11.4",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.13.2",
"playwright": "^1.62.1",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vitest": "^4.1.10"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.12",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/language": "^6.12.4",
"@lezer/highlight": "^1.2.3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-notification": "^2",
"@tauri-apps/plugin-opener": "^2",
"codemirror": "^6.0.2",
"dompurify": "^3.4.13",
"lucide-svelte": "^1.0.1",
"marked": "^18.0.9",
"mermaid": "^11.16.1"
},
"description": "GAEOS CREATOR - local model, agent, and mission control surface"
}