-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3 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
{
"name": "pi-desktop",
"private": true,
"version": "0.12.3",
"description": "Pi Desktop - Electron + React chat app powered by pi-ai",
"author": "tbrandenburg",
"desktopName": "dev.pi.desktop",
"license": "MIT",
"main": "dist-main/main/index.js",
"type": "commonjs",
"workspaces": [
"extensions/*"
],
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"postinstall": "node scripts/patch-nested-pi-coding-agent-deps.mjs",
"dev:renderer": "vite",
"dev:main": "tsc -p tsconfig.main.json -w",
"dev": "npm run build:extensions && concurrently -k \"npm:dev:main\" \"tsx scripts/run-electron-dev.ts\"",
"dev:web": "npm run build:extensions && tsx scripts/dev-web.ts",
"build:renderer": "vite build",
"build:main": "tsc -p tsconfig.main.json",
"build:extensions": "npm run build --workspaces --if-present",
"build": "npm run build:renderer && npm run build:main && npm run build:extensions",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"dist:linux": "npm run build && APPIMAGE_EXTRACT_AND_RUN=1 electron-builder --linux AppImage",
"dist:mac": "npm run build && electron-builder --mac dmg zip --universal",
"check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.main.json && npm run check --workspaces --if-present",
"lint:oxlint": "oxlint . extensions",
"test": "npm test --workspaces --if-present && vitest run",
"cdp": "tsx scripts/cdp-drive.ts",
"check:test-ratio": "bash scripts/check-test-ratio.sh",
"check:pi-lockstep": "node scripts/check-pi-lockstep.mjs",
"test:mutation": "stryker run"
},
"overrides": {
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@emnapi/wasi-threads": "1.2.3"
},
"dependencies": {
"@earendil-works/pi-agent-core": "^0.84.1",
"@earendil-works/pi-ai": "^0.84.1",
"@earendil-works/pi-coding-agent": "^0.84.1",
"electron-store": "^8.2.0",
"immer": "^11.1.15",
"lucide-react": "^1.33.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.0",
"ws": "^8.21.3",
"zod": "^4.4.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@tailwindcss/typography": "^0.5.20",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.1.0",
"@vitest/coverage-v8": "^4.1.10",
"concurrently": "^10.0.5",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"jsdom": "^30.0.1",
"oxlint": "^1.79.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}