forked from johannesjo/parallel-code
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
289 lines (289 loc) · 24.5 KB
/
Copy pathpackage.json
File metadata and controls
289 lines (289 loc) · 24.5 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
{
"name": "parallel-code",
"version": "0.7.0",
"description": "Coordinate parallel AI coding agents across tasks, terminals, diffs, and previews.",
"author": {
"name": "Johannes Millan",
"email": "contact@super-productivity.com"
},
"main": "dist-electron/electron/main.js",
"type": "module",
"scripts": {
"dev": "npm run compile && concurrently -k \"vite --config electron/vite.config.electron.ts\" \"npm run dev:electron\"",
"dev:electron": "node scripts/dev-electron.mjs",
"typecheck": "tsc --noEmit && npm run typecheck:lifecycle && npm run typecheck:server",
"typecheck:lifecycle": "tsc -p tsconfig.lifecycle.json --noEmit",
"typecheck:server": "tsc -p server/tsconfig.json --noEmit",
"compile": "node scripts/build-electron.mjs",
"build:frontend": "vite build --config electron/vite.config.electron.ts",
"build:remote": "vite build --config src/remote/vite.config.ts",
"build:server": "node server/build-server.mjs",
"prepare:browser-artifacts": "npm run build:frontend && npm run build:remote && npm run build:server && node scripts/compress-dist-assets.mjs && node scripts/compress-dist-assets.mjs --check",
"check:dist-compression": "node scripts/compress-dist-assets.mjs --check",
"build": "node scripts/build-release.mjs",
"server": "npm run prepare:browser-artifacts && node dist-server/server/main.js",
"browser:dev": "npm run dev:server",
"dev:server": "concurrently -k \"PARALLEL_CODE_VITE_FRONTEND_OUT_DIR=dist-browser-dev vite build --config electron/vite.config.electron.ts --watch\" \"PARALLEL_CODE_VITE_REMOTE_OUT_DIR=dist-remote-dev vite build --config src/remote/vite.config.ts --watch\" \"tsc -p server/tsconfig.json --watch --preserveWatchOutput\" \"wait-on dist-browser-dev/index.html dist-remote-dev/index.html dist-server/server/main.js && PARALLEL_CODE_SKIP_BROWSER_BUILD_ARTIFACT_CHECK=1 PARALLEL_CODE_BROWSER_DIST_DIR=dist-browser-dev PARALLEL_CODE_BROWSER_DIST_REMOTE_DIR=dist-remote-dev node --watch dist-server/server/main.js\"",
"serve": "vite preview --config electron/vite.config.electron.ts",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate:pr-description": "node scripts/validate-pr-description.mjs",
"verify:electron-package": "node scripts/verify-electron-package.mjs",
"test:validation-guards": "vitest run --config vitest.config.ts tests/harness/pr-description-validation.test.ts tests/harness/product-validation-objectives.test.ts tests/harness/build-release.test.ts tests/harness/build-server.test.ts tests/harness/verify-electron-package.test.ts tests/harness/smoke-remote-bootstrap.test.ts",
"test:architecture-guards": "vitest run --config vitest.config.ts electron/ipc/register.architecture.test.ts server/browser-control-plane.architecture.test.ts server/build-artifacts-config.architecture.test.ts src/app/browser-shell-performance.architecture.test.ts src/app/desktop-session.architecture.test.ts src/app/store-boundary.architecture.test.ts src/components/SidebarTaskRow.architecture.test.ts src/components/TaskPanel.architecture.test.ts src/components/review-surfaces.architecture.test.ts src/components/task-dialogs.architecture.test.ts src/components/terminal-view/terminal-session.architecture.test.ts src/remote/remote-state-boundary.architecture.test.ts src/store/git-isolation-compat.architecture.test.ts src/store/local-shell-preferences.architecture.test.ts",
"test": "npm run test:node && npm run test:solid",
"test:node": "npm run prepare:browser-artifacts && npm run test:node:default && npm run test:node:server-integration && npm run test:node:coordinator:e2e",
"test:node:default": "vitest run --config vitest.config.ts --exclude server/terminal-latency.test.ts --exclude server/session-stress.test.ts --exclude server/boot-pipeline.test.ts --exclude tests/coordinator/coordinator-browserless-e2e.test.ts",
"test:node:server-integration": "vitest run --config vitest.config.ts --no-file-parallelism server/terminal-latency.test.ts server/session-stress.test.ts server/boot-pipeline.test.ts",
"test:node:file": "node scripts/run-vitest-scoped.mjs --config vitest.config.ts",
"test:node:coordinator:e2e": "vitest run --config vitest.config.ts --no-file-parallelism tests/coordinator/coordinator-browserless-e2e.test.ts",
"test:node:terminal:stress": "vitest run --config vitest.config.ts tests/terminal-core/nonbrowser-terminal-stress.test.ts src/store/task-terminal-layout.test.ts",
"test:node:docker:integration": "RUN_DOCKER_INTEGRATION=1 vitest run --config vitest.config.ts electron/ipc/task-containers.integration.test.ts",
"test:node:docker:integration:required": "node scripts/require-docker-compose.mjs && npm run test:node:docker:integration",
"test:node:docker:agent-runner": "RUN_DOCKER_AGENT_INTEGRATION=1 vitest run --config vitest.config.ts electron/ipc/agent-runner-docker.integration.test.ts",
"test:node:docker:agent-runner:required": "node scripts/require-docker.mjs && npm run test:node:docker:agent-runner",
"test:solid": "vitest run --config vitest.solid.config.ts",
"test:solid:file": "node scripts/run-vitest-scoped.mjs --per-file --config vitest.solid.config.ts",
"test:harness": "npm run prepare:browser-artifacts && vitest run --config vitest.config.ts tests/harness",
"test:contracts:lifecycle": "npm run build:server && vitest run --config vitest.config.ts tests/contracts/review-diff.contract.test.ts tests/contracts/control-lease.contract.test.ts tests/contracts/control-plane-stress.contract.test.ts tests/contracts/task-command-takeover.contract.test.ts tests/contracts/git-state.contract.test.ts tests/contracts/reconnect-replay.contract.test.ts tests/contracts/remote-status.contract.test.ts electron/ipc/git-diff-ops.test.ts electron/ipc/task-ports.test.ts electron/ipc/task-review-state.test.ts electron/ipc/task-workflows.test.ts server/browser-control-plane.test.ts src/app/review-diffs.test.ts src/app/review-files.test.ts src/app/server-state-bootstrap.test.ts src/app/session-bootstrap-controller.test.ts src/app/task-command-lease.test.ts src/app/task-workflows.control.test.ts src/app/terminal-attach-scheduler.test.ts src/runtime/browser-session.test.ts src/runtime/browser-session.runtime.test.ts src/store/persistence.test.ts src/components/terminal-view/terminal-input-pipeline.test.ts src/components/terminal-view/terminal-output-pipeline.test.ts && vitest run --config vitest.solid.config.ts src/components/ReviewPanel.test.tsx src/components/TerminalView.test.tsx src/components/terminal-view/terminal-recovery-runtime.test.tsx",
"test:browser:run": "node scripts/run-playwright-with-browser-artifacts.mjs",
"test:browser:e2e": "npm run test:browser:file --",
"test:browser:e2e:headed": "npm run test:browser:run -- --headed",
"test:browser:e2e:update": "npm run test:browser:run -- --update-snapshots",
"test:browser:canaries": "npm run test:browser:run -- tests/browser/review-diff-lifecycle.spec.ts tests/browser/multiclient-control.spec.ts tests/browser/terminal-noisy-background.spec.ts tests/browser/remote-bootstrap.spec.ts --project chromium --workers=1",
"test:browser:preview": "npm run test:browser:run -- tests/browser/preview-proxy.spec.ts --project chromium --workers=1",
"test:browser:task-deletion": "npm run test:browser:run -- tests/browser/task-deletion-lifecycle.spec.ts --project chromium --workers=1",
"test:browser:file": "npm run test:browser:run --",
"test:browser:terminal:shared": "npm run test:browser:run -- tests/browser/terminal-input.spec.ts tests/browser/terminal-noisy-background.spec.ts tests/browser/terminal-restore.spec.ts tests/browser/multiclient-control.spec.ts --project chromium --workers=1 --grep-invert \"keeps a large-history shell responsive across background tab switches\"",
"test:browser:terminal:background-switch": "npm run test:browser:run -- tests/browser/terminal-restore.spec.ts --project chromium --workers=1 --grep \"keeps a large-history shell responsive across background tab switches\"",
"test:browser:terminal:render-stress:startup": "npm run test:browser:run -- tests/browser/terminal-render-stress.spec.ts --project chromium --workers=1 --grep \"startup large buffer\"",
"test:browser:terminal:render-stress:resize-flicker": "npm run test:browser:run -- tests/browser/terminal-render-stress.spec.ts --project chromium --workers=1 --grep \"resize flicker\"",
"test:browser:terminal:render-stress:additive-burst": "npm run test:browser:run -- tests/browser/terminal-render-stress.spec.ts --project chromium --workers=1 --grep \"additive burst\"",
"test:browser:terminal:render-stress:shared": "npm run test:browser:run -- tests/browser/terminal-render-stress.spec.ts --project chromium --workers=1 --grep-invert \"startup large buffer|additive burst|resize flicker\"",
"test:browser:terminal:render-stress": "npm run test:browser:terminal:render-stress:startup && npm run test:browser:terminal:render-stress:resize-flicker && npm run test:browser:terminal:render-stress:additive-burst && npm run test:browser:terminal:render-stress:shared",
"test:browser:terminal": "npm run test:browser:terminal:background-switch && npm run test:browser:terminal:render-stress && npm run test:browser:terminal:shared",
"test:browser:terminal:soak": "npm run test:browser:run -- tests/browser/terminal-render-soak.spec.ts --project chromium --workers=1",
"test:contracts": "vitest run --config vitest.config.ts tests/contracts src/runtime/server-sync.test.ts",
"test:reliability": "npm run build:server && vitest run --config vitest.config.ts tests/contracts src/runtime/server-sync.test.ts server/terminal-latency.test.ts src/lib/ipc.test.ts src/lib/websocket-client.test.ts electron/remote/ws-transport.test.ts src/runtime/browser-session.test.ts",
"benchmark:terminal-input": "node scripts/terminal-input-benchmark.mjs",
"benchmark:terminal:renderer": "npm exec vitest -- run --config vitest.benchmark.config.ts src/app/terminal-output-scheduler.benchmark.ts src/components/terminal-view/terminal-output-history.benchmark.ts src/components/terminal-view/terminal-output-pipeline.benchmark.ts src/store/agent-output-activity.benchmark.ts",
"benchmark:terminal:attach-recovery": "npm exec vitest -- run --config vitest.benchmark.config.ts src/app/terminal-attach-scheduler.benchmark.ts src/lib/scrollbackRestore.benchmark.ts",
"benchmark:browser:startup-metrics": "RUN_BROWSER_STARTUP_METRICS=1 npm run test:browser:run -- tests/browser/browser-startup-metrics.spec.ts --project chromium --workers=1",
"benchmark:terminal:steady-state": "node scripts/terminal-steady-state-benchmark.mjs",
"perf:scorecard:smoke": "npm run test:browser:run -- tests/browser/performance-scorecard-smoke.spec.ts --project chromium --workers=1",
"perf:scorecard:smoke:baseline": "npm run perf:scorecard:smoke && npm run perf:scorecard:smoke && npm run perf:scorecard:smoke && npm run perf:scorecard:summarize -- --profile smoke --latest 3",
"perf:scorecard:summarize": "node scripts/performance-scorecard-summary.mjs",
"profile:terminal:latency": "npm run prepare:browser-artifacts && node scripts/profile-terminal-input-latency.mjs --launch-server",
"profile:terminal:ui-fluidity": "npm run prepare:browser-artifacts && node scripts/profile-terminal-ui-fluidity.mjs --launch-server",
"profile:terminal:ui-fluidity:gate:run": "node scripts/run-terminal-ui-fluidity-gate.mjs",
"profile:terminal:ui-fluidity:gate": "npm run profile:terminal:ui-fluidity:gate:run --",
"profile:terminal:ui-fluidity:dense-gate": "npm run profile:terminal:ui-fluidity:gate:run -- --dense",
"profile:terminal:ui-fluidity:matrix:gate": "npm run profile:terminal:ui-fluidity:gate --",
"lab:terminal:ui-fluidity:matrix": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build",
"lab:terminal:ui-fluidity:experiments": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --repeats 3",
"lab:terminal:ui-fluidity:hidden-render-wake": "npm run prepare:browser-artifacts && node scripts/profile-terminal-ui-fluidity.mjs --launch-server --variant hidden_hibernation --profiles hidden_render_wake",
"lab:terminal:ui-fluidity:hidden-session-wake": "npm run prepare:browser-artifacts && node scripts/profile-terminal-ui-fluidity.mjs --launch-server --variant hidden_session_dormancy --profiles hidden_session_wake",
"lab:terminal:ui-fluidity:hidden-switch": "npm run prepare:browser-artifacts && node scripts/profile-terminal-ui-fluidity.mjs --launch-server --variant high_load_mode_product --profiles recent_hidden_switch",
"lab:terminal:ui-fluidity:hidden-switch:matrix": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --variants product_default,high_load_mode_product --profiles recent_hidden_switch --visible-terminal-counts 1,2,4 --repeats 3",
"lab:terminal:ui-fluidity:matrix:hidden-lifecycle": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --allow-partial-profiles --variants baseline,render_freeze,render_freeze_preemption_150,hidden_session_dormancy,tiered_hidden_lifecycle,tiered_hidden_lifecycle_preemption --profiles recent_hidden_switch,interactive_verbose,hidden_render_wake,hidden_session_wake --visible-terminal-counts 1,2,4",
"lab:terminal:ui-fluidity:matrix:bulk-bursts": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --variants baseline,product_default,focused_preemption_150,focused_preemption_limited,visible_write_shaping_16k,visible_write_shaping_32k,visible_write_shaping_64k --profiles bulk_text,markdown_burst,code_burst,diff_burst,agent_cli_burst",
"lab:terminal:ui-fluidity:matrix:visible-shapes": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --profiles recent_hidden_switch,interactive_verbose,bulk_text --visible-terminal-counts 1,2,4",
"lab:terminal:ui-fluidity:trace": "npm run prepare:browser-artifacts && node scripts/terminal-ui-fluidity-matrix.mjs --skip-build --repeats 1 --trace --trace-profiles bulk_text,mixed_agents",
"profile:review:diffs": "node scripts/profile-review-diffs.mjs",
"profile:server:boot": "npm run build:server && node scripts/profile-server-boot.mjs",
"diagnostics:watch": "node scripts/runtime-diagnostics-watch.mjs",
"stress:session": "npm run build:server && node scripts/session-stress.mjs --skip-build",
"stress:session:smoke": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix smoke --out-dir artifacts/session-stress/smoke --skip-build",
"stress:session:profile:steady-fanout": "npm run build:server && node scripts/session-stress-matrix.mjs --profile steady_fanout --out-dir artifacts/session-stress/steady-fanout --skip-build",
"stress:session:profile:multi-agent-layout": "npm run build:server && node scripts/session-stress-matrix.mjs --profile multi_agent_layout --out-dir artifacts/session-stress/multi-agent-layout --skip-build",
"stress:session:profile:steady-verbose-agents": "npm run build:server && node scripts/session-stress-matrix.mjs --profile steady_verbose_agents_24 --out-dir artifacts/session-stress/steady-verbose-agents --skip-build",
"stress:session:profile:verbose-bulk-text": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_bulk_text --out-dir artifacts/session-stress/verbose-bulk-text --skip-build",
"stress:session:profile:verbose-markdown-burst": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_markdown_burst --out-dir artifacts/session-stress/verbose-markdown-burst --skip-build",
"stress:session:profile:verbose-code-burst": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_code_burst --out-dir artifacts/session-stress/verbose-code-burst --skip-build",
"stress:session:profile:verbose-diff-burst": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_diff_burst --out-dir artifacts/session-stress/verbose-diff-burst --skip-build",
"stress:session:profile:verbose-agent-cli-burst": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_agent_cli_burst --out-dir artifacts/session-stress/verbose-agent-cli-burst --skip-build",
"stress:session:profile:verbose-statusline": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_statusline --out-dir artifacts/session-stress/verbose-statusline --skip-build",
"stress:session:profile:verbose-mixed-agents": "npm run build:server && node scripts/session-stress-matrix.mjs --profile verbose_mixed_agents --out-dir artifacts/session-stress/verbose-mixed-agents --skip-build",
"stress:session:profile:interactive-verbose": "npm run build:server && node scripts/session-stress-matrix.mjs --profile interactive_verbose --out-dir artifacts/session-stress/interactive-verbose --skip-build",
"stress:session:profile:heavy-tui": "npm run build:server && node scripts/session-stress-matrix.mjs --profile heavy_tui --out-dir artifacts/session-stress/heavy-tui --skip-build",
"stress:session:profile:reconnect-storm": "npm run build:server && node scripts/session-stress-matrix.mjs --profile reconnect_storm --out-dir artifacts/session-stress/reconnect-storm --skip-build",
"scorecard:terminal-startup-tail": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix startup_tail --out-dir artifacts/session-stress/startup-tail --skip-build",
"stress:session:profile:late-join": "npm run build:server && node scripts/session-stress-matrix.mjs --profile late_join --out-dir artifacts/session-stress/late-join --skip-build",
"stress:session:profile:slow-link": "npm run build:server && node scripts/session-stress-matrix.mjs --profile slow_link --out-dir artifacts/session-stress/slow-link --skip-build",
"stress:session:tune:slow-link": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix slow_link_tuning --repeats 3 --allow-budget-failures --out-dir artifacts/session-stress/slow-link-tuning --skip-build",
"stress:session:weak-connectivity": "npm run build:frontend && npm run build:remote && npm run build:server && node scripts/session-stress-matrix.mjs --matrix weak_connectivity_experiments --repeats 3 --allow-budget-failures --out-dir artifacts/session-stress/weak-connectivity --skip-build",
"stress:session:matrix": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix smoke --matrix production --out-dir artifacts/session-stress/matrix --skip-build",
"stress:session:matrix:steady-state-verbose": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix steady_state_verbose --out-dir artifacts/session-stress/steady-state-verbose --skip-build",
"stress:session:prod-gate": "npm run build:server && node scripts/session-stress-matrix.mjs --matrix production --out-dir artifacts/session-stress/prod-gate --skip-build",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test:architecture-guards",
"release": "npm run typecheck && npm version patch && git push --follow-tags",
"prepare": "husky && git config core.hooksPath .husky",
"postinstall": "node scripts/postinstall-native-fixups.mjs",
"test:browser:remote": "npm run test:browser:run -- tests/browser/remote-bootstrap.spec.ts tests/browser/remote-mobile-session.spec.ts --project chromium --workers=1",
"smoke:remote": "node scripts/smoke-remote-bootstrap.mjs"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"cross-spawn": "^7.0.6",
"express": "^5.2.1",
"http-proxy": "^1.18.1",
"node-pty": "^1.1.0",
"picocolors": "^1.1.1",
"ws": "^8.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@electron/asar": "^3.4.1",
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/user-event": "^14.6.1",
"@types/express": "^5.0.6",
"@types/http-proxy": "^1.17.17",
"@types/node": "^25.3.0",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"@typescript-eslint/parser": "^8.56.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"concurrently": "^9.2.1",
"electron": "^40.6.0",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-solid": "^0.14.5",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"marked": "^17.0.3",
"mermaid": "^11.15.0",
"monaco-editor": "^0.55.1",
"prettier": "^3.8.1",
"qrcode": "^1.5.4",
"shiki": "^4.0.2",
"solid-js": "^1.9.11",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.10",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --no-warn-ignored --max-warnings 0",
"prettier --write"
],
"*.{js,cjs,json,md,html,css}": "prettier --write"
},
"overrides": {
"dompurify": "3.4.7"
},
"build": {
"appId": "com.parallel-code.app",
"productName": "Parallel Code",
"directories": {
"buildResources": "build",
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"dist-remote/**/*",
"vendor/hydra/**/*",
"electron/preload.cjs",
"!**/*.{bench,benchmark,spec,test,test-helper}.{cjs,cts,js,jsx,mjs,mts,ts,tsx}",
"!**/*.{bench,benchmark,spec,test,test-helper}.{cjs,cts,js,jsx,mjs,mts,ts,tsx}.map",
"!**/*.{bench,benchmark,spec,test,test-helper}.d.{cts,mts,ts}",
"!**/*.{bench,benchmark,spec,test,test-helper}.d.{cts,mts,ts}.map",
"!**/*.{bench,benchmark,spec,test,test-helper}-d.{cts,mts,ts}",
"!**/*.{bench,benchmark,spec,test,test-helper}-d.{cts,mts,ts}.map",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}.{cjs,cts,js,jsx,mjs,mts,ts,tsx}",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}.{cjs,cts,js,jsx,mjs,mts,ts,tsx}.map",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}.d.{cts,mts,ts}",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}.d.{cts,mts,ts}.map",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}-d.{cts,mts,ts}",
"!**/test/**/*-{bench,benchmark,spec,test,test-helper}-d.{cts,mts,ts}.map",
"!**/{playwright,vitest}{,-*,.*}.{config,workspace}.{cjs,cts,js,jsx,mjs,mts,ts,tsx}",
"!**/.size-snapshot.json",
"!**/node_modules/ajv/.runkit_example.js",
"!**/node_modules/cytoscape/src/test.mjs",
"!**/node_modules/khroma/tasks/benchmark.js",
"!**/node_modules/node-pty/deps/winpty/misc/color-test.sh",
"!**/node_modules/object-inspect/test-core-js.js",
"!**/node_modules/requires-port/test.js",
"!**/node_modules/safer-buffer/tests.js",
"!**/node_modules/cytoscape-fcose/demo",
"!**/node_modules/cytoscape-fcose/demo/**",
"!**/node_modules/node-pty/scripts",
"!**/node_modules/node-pty/scripts/**",
"!**/__mocks__",
"!**/__mocks__/**",
"!**/__snapshots__",
"!**/__snapshots__/**",
"!**/__tests__",
"!**/__tests__/**",
"!**/benchmark",
"!**/benchmark/**",
"!**/benchmarks",
"!**/benchmarks/**",
"!**/coverage",
"!**/coverage/**",
"!**/example",
"!**/example/**",
"!**/examples",
"!**/examples/**",
"!**/playwright-tests",
"!**/playwright-tests/**",
"!**/spec",
"!**/spec/**",
"!**/specs",
"!**/specs/**",
"!**/test-results",
"!**/test-results/**",
"!**/tests",
"!**/tests/**",
"!**/tests-examples",
"!**/tests-examples/**"
],
"asarUnpack": [
"**/node-pty/**"
],
"extraResources": [
{
"from": "build/icon.png",
"to": "icon.png"
}
],
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Development",
"desktop": {
"entry": {
"StartupWMClass": "parallel-code",
"StartupNotify": "true"
}
}
},
"mac": {
"target": "dmg",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"notarize": true,
"x64ArchFiles": "Contents/Resources/app.asar.unpacked/node_modules/node-pty/prebuilds/**",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
}
}
}