-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.51 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.51 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
94
95
96
97
{
"name": "llm-model-manager",
"version": "1.2.1",
"description": "Electron tool to check if a model is available",
"main": "dist/main.js",
"scripts": {
"presets:extract": "node scripts/presets/extract-models.js",
"dev": "electron-vite dev --watch",
"build": "electron-vite build",
"start": "electron-vite preview",
"dist": "npm run build && electron-builder --publish never",
"dist:mac": "npm run build && electron-builder --mac dmg zip --publish never",
"dist:win": "npm run build && electron-builder --win nsis portable --publish never",
"dist:linux": "npm run build && electron-builder --linux AppImage tar.gz --publish never"
},
"keywords": [
"electron",
"llm-model-manager"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@harnessgg/electron": "^0.1.0",
"@types/electron": "^1.4.38",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.4.27",
"electron": "^28.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^5.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^3.4.17",
"typescript": "^6.0.2"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"highlight.js": "^11.11.1",
"lucide-react": "^1.7.0",
"marked": "^17.0.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"build": {
"appId": "com.jzj.llm-model-manager",
"productName": "LLM Model Manager",
"icon": "build/icon.png",
"asar": true,
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json",
"node_modules/**/*"
],
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"category": "Development"
},
"publish": [
{
"provider": "github",
"owner": "jzj1993",
"repo": "llm-model-manager",
"releaseType": "release"
}
]
}
}