forked from J3n5en/EnsoCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "enso-code",
"version": "0.1.19",
"description": "EnsoCode - Electron Multi-Window Scaffold",
"main": "./out/main/index.js",
"author": {
"name": "EnsoAI Team",
"email": "i@j3.do"
},
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.26.2",
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"build:mac": "pnpm build && electron-builder --mac",
"build:win": "pnpm build && electron-builder --win",
"build:linux": "pnpm build && electron-builder --linux",
"generate:themes": "npx tsx scripts/generate-themes.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"format": "biome format --write .",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@bufbuild/protobuf": "^2.14.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@earendil-works/pi-coding-agent": "^0.84.3",
"@electron-toolkit/utils": "^4.0.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"@pierre/diffs": "^1.3.5",
"@rahularya01/pi-cursor": "1.4.30",
"@shikijs/themes": "4.4.3",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"better-sqlite3": "^13.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dockview-react": "^8.2.0",
"electron-updater": "^6.8.9",
"framer-motion": "^13.1.1",
"level": "^10.0.0",
"lucide-react": "^1.33.0",
"mermaid": "^11.17.2",
"node-pty": "^1.1.0",
"qrcode": "^1.5.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-virtuoso": "^4.18.12",
"remark-gfm": "^4.0.1",
"shiki": "4.4.3",
"smol-toml": "^1.8.0",
"tailwind-merge": "^3.6.0",
"tweetnacl": "^1.0.3",
"undici": "^8.10.1",
"unist-util-visit": "^5.1.0",
"web-push": "^3.6.7",
"yaml": "^2.9.0",
"zustand": "^5.0.15"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@electron-toolkit/tsconfig": "^2.0.0",
"@tailwindcss/vite": "^4.3.3",
"@types/better-sqlite3": "^9.6.0",
"@types/mdast": "^4.0.4",
"@types/node": "^26.2.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@types/web-push": "^3.6.4",
"@vitejs/plugin-react": "^5.0.4",
"electron": "^43.4.1",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^7.1.9",
"vitest": "^4.1.11"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"electron",
"node-pty",
"electron-winstaller",
"esbuild",
"classic-level"
],
"patchedDependencies": {
"@rahularya01/pi-cursor@1.4.30": "patches/@rahularya01__pi-cursor@1.4.30.patch"
}
}
}