-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.82 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.82 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
{
"name": "Polyphon",
"productName": "Polyphon",
"version": "0.13.1",
"description": "One chat. Many voices.",
"main": ".vite/build/main.js",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "tsc --noEmit",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:e2e": "npm run build:e2e && playwright test",
"test:watch": "vitest --config vitest.unit.config.ts",
"build:e2e": "node scripts/build-e2e.mjs",
"screenshots": "npx tsx scripts/take-screenshots.ts",
"postinstall": "node scripts/build-sqlcipher.mjs --mode=electron && node scripts/build-sqlcipher.mjs --mode=node"
},
"keywords": [],
"author": "Polyphon AI",
"license": "UNLICENSED",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@electron/rebuild": "^3.7.2",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^5.1.4",
"electron": "^41.0.2",
"happy-dom": "^20.8.9",
"knip": "^6.0.1",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"overrides": {
"tmp": "^0.2.5",
"@tootallnate/once": "^3.0.1",
"tar": "^7.5.11",
"path-to-regexp": "^8.4.0",
"picomatch": "^4.0.4",
"micromatch": {
"picomatch": "^2.3.2"
},
"brace-expansion": "^2.0.3",
"smol-toml": "^1.6.1"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.8.0",
"electron-log": "^5.4.3",
"electron-updater": "^6.8.3",
"geist": "^1.7.0",
"hast-util-sanitize": "^5.0.2",
"lucide-react": "^0.577.0",
"mdast": "^3.0.0",
"openai": "^6.27.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.1",
"rehype-sanitize": "^6.0.0",
"unist-util-visit": "^5.0.0",
"zustand": "^5.0.11"
}
}