-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.19 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.19 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
{
"name": "scpm",
"version": "1.1.5",
"description": "SC Plugins Manager",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently -k \"vite\" \"cross-env NODE_ENV=development electron .\"",
"build": "vite build && electron-builder",
"preview": "vite preview"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.5",
"vdf-parser": "^1.2.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"vite": "^6.0.3"
},
"build": {
"appId": "com.scpm.manager",
"productName": "SC Plugins Manager",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"win": {
"target": "portable",
"icon": "icon.ico"
},
"linux": {
"target": "AppImage",
"category": "Utility"
}
}
}