-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.68 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": "one",
"version": "0.1.16",
"description": "One desktop app built with Electron, React, and TypeScript.",
"main": "./out/main/index.cjs",
"author": "shijianzhong",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/shijianzhong/1.git"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && playwright test",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"postinstall": "electron-rebuild -f -w better-sqlite3",
"vendor:opencli": "npm install --prefix vendor/opencli @jackwener/opencli --omit=dev",
"package": "npm run build && npm run vendor:opencli && electron-builder"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.115.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-query": "^5.85.5",
"@xyflow/react": "^12.11.2",
"adm-zip": "^0.6.0",
"ajv": "^8.20.0",
"better-sqlite3": "^13.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-log": "^5.4.4",
"electron-updater": "^6.8.9",
"framer-motion": "^12.42.2",
"i18next": "^25.3.2",
"i18next-http-backend": "^4.0.0",
"katex": "^0.18.1",
"lucide-react": "^0.539.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^15.7.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.7.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.7"
},
"devDependencies": {
"@electron/rebuild": "^4.2.0",
"@playwright/test": "^1.62.0",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.3",
"@types/adm-zip": "^0.5.8",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.1.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"electron": "^37.2.6",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.0",
"jsdom": "^29.1.1",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"vite": "^7.0.6",
"vitest": "^4.1.10"
}
}