-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.07 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.07 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
92
93
{
"name": "interview-coder-cn",
"version": "1.7.0",
"description": "编码面试解题助手,实时截屏并生成解题思路和答案",
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ooboqoo/interview-coder-cn.git"
},
"keywords": [
"解题助手",
"面试",
"助手",
"coding interview",
"LeetCode"
],
"author": "Gavin Wang<ooboqoo@gmail.com>",
"license": "CC BY-NC 4.0",
"bugs": {
"url": "https://github.com/ooboqoo/interview-coder-cn/issues"
},
"homepage": "https://github.com/ooboqoo/interview-coder-cn#readme",
"dependencies": {
"@ai-sdk/openai": "^2.0.16",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"ai": "^5.0.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv": "^17.2.1",
"electron-updater": "^6.3.9",
"lucide-react": "^0.540.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router": "^7.8.1",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.7",
"ws": "^8.20.0",
"zod": "^4.0.17",
"zustand": "^5.0.8"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.1.12",
"@types/node": "^22.16.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.7.0",
"electron": "^37.2.3",
"electron-builder": "^25.1.8",
"electron-vite": "^4.0.0",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.12",
"typescript": "^5.8.3",
"vite": "^7.0.5",
"vite-plugin-static-copy": "^3.1.4"
}
}