-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.49 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
{
"name": "stackferry",
"productName": "StackFerry",
"desktopName": "stackferry",
"version": "1.0.5",
"private": true,
"description": "Electron desktop app for switching Codex CLI providers.",
"license": "MIT",
"author": "StackFerry",
"type": "module",
"packageManager": "pnpm@11.25.0",
"engines": {
"node": ">=22.12.0",
"pnpm": ">=11 <12"
},
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"build": "vite build && electron-builder",
"build:win": "vite build && electron-builder --win",
"build:mac": "vite build && electron-builder --mac",
"build:linux": "vite build && electron-builder --linux",
"preview": "vite preview",
"i18n": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
"test": "pnpm i18n && vitest run",
"typecheck": "pnpm i18n && tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.node.json --composite false"
},
"dependencies": {
"@codeproxy/core": "0.1.26",
"electron-updater": "6.6.4",
"fflate": "^0.8.3",
"smol-toml": "^1.5.2"
},
"devDependencies": {
"@ant-design/cssinjs": "^2.1.2",
"@ant-design/icons": "^6.3.4",
"@base-ui/react": "^1.7.0",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/language": "^6.12.4",
"@codemirror/legacy-modes": "^6.5.4",
"@codemirror/view": "^6.43.11",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource-variable/geist": "^5.3.0",
"@inlang/paraglide-js": "^2.25.0",
"@inlang/plugin-m-function-matcher": "^2.2.13",
"@inlang/plugin-message-format": "^4.4.4",
"@lezer/highlight": "^1.2.3",
"@lobehub/icons-static-svg": "^1.94.0",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^26.4.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@uiw/react-codemirror": "^4.25.11",
"@vitejs/plugin-react": "^6.0.2",
"antd": "^6.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cn": "^0.2.5",
"electron": "^42.1.0",
"electron-builder": "^26.8.1",
"lucide-react": "^1.39.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "3.8.0",
"shadcn": "^4.20.1",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vite-plugin-electron": "^1.0.1",
"vite-plugin-electron-renderer": "^1.0.0",
"vitest": "^4.1.8"
}
}