-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "pi-desktop",
"version": "0.7.1",
"private": true,
"type": "module",
"packageManager": "bun@1.3.11",
"engines": {
"node": ">=24.13.1"
},
"scripts": {
"build": "bun run --workspaces build",
"dev": "bun run --parallel --filter @pi-desktop/shared --filter @pi-desktop/agent-host --filter @pi-desktop/desktop dev",
"format": "biome check --write .",
"lint": "biome check .",
"lint:imports": "node ./scripts/check-import-boundaries.mjs",
"lint:sizes": "node ./scripts/check-file-sizes.mjs",
"prepare": "node ./scripts/install-git-hooks.mjs",
"refactor:snapshot": "node ./scripts/refactor-snapshot.mjs",
"test": "bun x vitest run --config vitest.workspace.ts",
"typecheck": "bun run --workspaces typecheck"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@electron/rebuild": "^4.0.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "25.5.0",
"jsdom": "^29.0.2",
"typescript": "5.9.3",
"vitest": "4.1.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"boneyard-js": "^1.7.6"
}
}