-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
206 lines (206 loc) · 8.17 KB
/
package.json
File metadata and controls
206 lines (206 loc) · 8.17 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
{
"name": "daintree",
"productName": "Daintree",
"version": "0.7.1",
"description": "Daintree IDE - An Electron-based development environment",
"author": {
"name": "Greg Priday",
"email": "greg@siteorigin.com"
},
"main": "dist-electron/electron/bootstrap.js",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"scripts": {
"dev": "node scripts/dev.mjs",
"dev:fresh": "cross-env DAINTREE_RESET_DATA=1 node scripts/dev.mjs",
"dev:perf": "cross-env DAINTREE_PERF_CAPTURE=1 DAINTREE_PERF_METRICS_FILE=perf-metrics.ndjson node scripts/dev.mjs",
"dev:electron": "cross-env NODE_ENV=development electron .",
"build:main": "cross-env NODE_ENV=production node scripts/build-main.mjs",
"watch:main": "node scripts/build-main.mjs --watch",
"build": "tsc && vite build && npm run build:main",
"package": "npm run build && electron-builder",
"package:canopy": "cross-env BUILD_VARIANT=canopy npm run build && cross-env BUILD_VARIANT=canopy electron-builder",
"package:mac": "npm run build && electron-builder --mac",
"package:win": "npm run build && electron-builder --win",
"package:linux": "npm run build && electron-builder --linux",
"package:local": "npm run build && electron-builder --mac --dir -c.mac.identity=null -c.mac.forceCodeSigning=false -c.mac.notarize=false",
"package:local:dmg": "npm run build && electron-builder --mac dmg -c.mac.identity=null -c.mac.forceCodeSigning=false -c.mac.notarize=false",
"rebuild": "electron-rebuild -f -w node-pty,better-sqlite3 && node node_modules/node-pty/scripts/post-install.js",
"postinstall": "node scripts/postinstall.cjs",
"pretest": "npm rebuild better-sqlite3 --silent",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ratchet": "node scripts/lint-ratchet.mjs",
"lint:ci": "eslint . --max-warnings 0",
"knip": "knip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit && tsc -b electron/tsconfig.json && tsc --noEmit -p electron/tsconfig.preload.json",
"check:channels": "node scripts/ci/check-channel-drift.mjs",
"compiler-budget:build": "vite build",
"compiler-budget:check": "node scripts/check-compiler-budget.mjs",
"compiler-budget:update": "vite build && node scripts/check-compiler-budget.mjs --update",
"import-budget:build": "node scripts/build-import-budget.mjs",
"import-budget:check": "node scripts/check-import-budget.mjs",
"import-budget": "npm run import-budget:build && npm run import-budget:check",
"import-budget:update": "npm run import-budget:build && node scripts/check-import-budget.mjs --update",
"renderer-bundle-budget:build": "vite build",
"renderer-bundle-budget:check": "node scripts/check-renderer-bundle-budget.mjs",
"renderer-bundle-budget:update": "vite build && node scripts/check-renderer-bundle-budget.mjs --update",
"check": "npm run typecheck && npm run check:channels && npm run lint:ratchet && npm run format:check",
"fix": "npm run format && npm run lint:fix",
"test:smoke": "node scripts/run-smoke.mjs",
"test:e2e": "npx playwright test",
"test:e2e:core": "npx playwright test --project=core",
"test:e2e:full": "npx playwright test --project=full",
"test:e2e:online": "npx playwright test --project=online",
"test:e2e:nightly": "npx playwright test --project=nightly --workers=1",
"perf:smoke": "tsx scripts/perf/run.ts --mode smoke",
"perf:ci": "tsx scripts/perf/run.ts --mode ci",
"perf:nightly": "tsx scripts/perf/run.ts --mode nightly",
"perf:soak": "tsx scripts/perf/run.ts --mode soak",
"perf:cold-start": "tsx scripts/perf/cold-start.ts",
"pattern-discovery:run": "tsx scripts/pattern-discovery/runner.ts",
"pattern-discovery:analyze": "tsx scripts/pattern-discovery/analyzer.ts",
"pattern-discovery:update": "tsx scripts/pattern-discovery/update-registry.ts",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-select": "^2.2.6",
"@xterm/addon-webgl": "^0.19.0",
"archiver": "^7.0.1",
"better-sqlite3": "^12.8.0",
"copytree": "^0.14.2",
"js-yaml": "^4.1.1",
"node-pty": "1.2.0-beta.12"
},
"optionalDependencies": {
"ffmpeg-static": "^5.2.0"
},
"overrides": {
"node-gyp": "^10.3.1",
"eslint-plugin-react-hooks": "$eslint-plugin-react-hooks",
"@tailwindcss/vite": {
"vite": "^8.0.0"
}
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.2",
"@codemirror/language-data": "^6.5.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@deepgram/sdk": "^4.11.3",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron/rebuild": "^4.0.3",
"@eslint/js": "^10.0.1",
"@fast-check/vitest": "^0.4.0",
"@fontsource/jetbrains-mono": "^5.2.8",
"@lezer/highlight": "^1.2.3",
"@modelcontextprotocol/sdk": "^1.27.1",
"@octokit/graphql": "^9.0.3",
"@playwright/test": "^1.58.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@rolldown/plugin-babel": "^0.2.2",
"@sentry/electron": "^7.10.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/archiver": "^7.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^28.0.0",
"@types/node": "^22.19.15",
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/semver": "^7.7.1",
"@types/stopword": "^2.0.3",
"@uiw/codemirror-themes": "^4.25.8",
"@uiw/react-codemirror": "^4.25.8",
"@vitejs/plugin-react": "^6.0.0",
"@vitest/ui": "^4.1.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/headless": "^6.0.0",
"@xterm/xterm": "^6.0.0",
"anser": "^2.3.5",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"concurrently": "^9.1.0",
"cross-env": "^10.1.0",
"drizzle-orm": "^0.45.1",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"electron-store": "^11.0.2",
"electron-updater": "^6.3.0",
"esbuild": "^0.27.4",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-compiler": "^19.1.0-rc.2",
"eslint-plugin-react-hooks": "7.1.0-canary-c80a0750-20260312",
"eslint-plugin-unicorn": "^64.0.0",
"execa": "^9.6.0",
"fast-check": "^3.23.2",
"fix-path": "^5.0.0",
"framer-motion": "^12.37.0",
"frimousse": "^0.3.0",
"fuse.js": "^7.1.0",
"husky": "^9.1.7",
"jsdom": "^29.0.0",
"knip": "^6.5.0",
"lint-staged": "^16.4.0",
"lucide-react": "^0.577.0",
"nodemon": "^3.1.11",
"openai": "^6.33.0",
"p-queue": "^9.0.1",
"path-browserify": "^1.0.1",
"prettier": "^3.7.2",
"react": "^19.2.1",
"react-diff-view": "^3.3.2",
"react-dom": "^19.0.0",
"react-virtuoso": "^4.18.3",
"refractor": "^5.0.0",
"safe-regex2": "^5.1.0",
"semver": "^7.7.3",
"simple-git": "^3.33.0",
"stopword": "^3.1.5",
"stubborn-fs": "^2.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.0",
"vitest": "^4.1.0",
"wait-on": "^9.0.4",
"zod": "^4.3.6",
"zustand": "^5.0.12"
}
}