-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "suncode",
"version": "0.1.34",
"description": "SunCode - A desktop coding agent client powered by AI",
"type": "module",
"packageManager": "bun@1.3.14",
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "node scripts/launch-dev.js",
"prepare": "git config core.hooksPath .githooks",
"dev:internal": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check src/",
"lint:yaml": "node scripts/validate-yaml.js",
"format": "biome format src/ --write",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:bun": "bun test",
"typecheck": "tsc --noEmit",
"electron:dev": "vite",
"electron:build": "vite build && electron-builder --config electron-builder.yml",
"electron:build:win": "vite build && electron-builder --config electron-builder.yml --win",
"electron:build:mac": "vite build && electron-builder --config electron-builder.yml --mac",
"electron:build:linux": "vite build && electron-builder --config electron-builder.yml --linux",
"release": "vite build && electron-builder --config electron-builder.yml --publish always",
"test:ai": "bun run scripts/test-ai.ts",
"test:deep-swe": "bun run scripts/run-deep-swe.ts",
"test:terminal-bench": "bun run scripts/run-terminal-bench.ts",
"test:terminal-bench:ab": "bun run scripts/run-terminal-bench-ab.ts",
"update:commands": "bun run scripts/fetch-windows-commands.ts"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/lang-css": "^6.3.0",
"@codemirror/lang-html": "^6.4.0",
"@codemirror/lang-javascript": "^6.2.0",
"@codemirror/lang-json": "^6.0.0",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-python": "^6.1.0",
"@codemirror/lang-rust": "^6.0.0",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/language": "^6.10.0",
"@codemirror/merge": "^6.7.0",
"@codemirror/search": "^6.5.0",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.0",
"@codemirror/view": "^6.35.0",
"@earendil-works/pi-ai": "^0.79.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"electron-log": "^5.4.4",
"electron-updater": "^6.8.9",
"lucide-vue-next": "^1.0.0",
"markstream-vue": "^1.0.5",
"pinia": "^3.0.4",
"shiki": "^4.3.1",
"stream-markdown": "^0.0.16",
"vanilla-colorful": "^0.7.2",
"vue": "^3.5.0",
"yaml": "^2.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@vitejs/plugin-vue": "^5.2.0",
"@vitest/coverage-v8": "^4.1.9",
"electron": "^42.5.0",
"electron-builder": "^25.1.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.0",
"vitest": "^4.1.9",
"vue-tsc": "^2.2.0"
},
"author": "SunCode Team",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
}
}