-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.01 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.01 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
{
"name": "ai-tools",
"version": "0.0.8",
"description": "A LLM client with shortcut",
"main": "./out/main/index.js",
"author": "elsejj",
"homepage": "https://github.com/elsejj/ai-tools",
"scripts": {
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-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 --noSandbox",
"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": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"build:auto": "node build.js"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"katex": "^0.16.25",
"marked-katex-extension": "^5.1.6",
"sendkey": "file:./sendkey"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
"@iconify-json/lucide-lab": "^1.2.3",
"@iconify/tailwind4": "^1.1.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@primeuix/themes": "^1.2.5",
"@primevue/auto-import-resolver": "^4.4.1",
"@tailwindcss/vite": "^4.1.17",
"@types/node": "^24.10.1",
"@vitejs/plugin-vue": "^6.0.2",
"dexie": "^4.2.1",
"electron": "^38.7.1",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.1",
"highlight.js": "^11.11.1",
"html-to-image": "^1.11.13",
"marked": "^16.4.2",
"marked-highlight": "^2.2.3",
"openai": "^5.23.2",
"pinia": "^3.0.4",
"primevue": "^4.4.1",
"tailwindcss": "^4.1.17",
"tailwindcss-primeui": "^0.6.1",
"typescript": "^5.9.3",
"unplugin-vue-components": "^29.2.0",
"vite": "^7.2.4",
"vue": "^3.5.24",
"vue-router": "^4.6.3",
"vue-tsc": "^3.1.4"
}
}