-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.16 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.16 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
98
99
100
101
102
103
104
105
{
"name": "clusta",
"version": "v1.0.8",
"license": "GPLv3",
"author": {
"name": "AstroFoxLabs (Vinzenz Wetzel)",
"email": "astrofox@astrofoxlabs.com",
"url": "https://astrofoxlabs.com"
},
"type": "commonjs",
"main": "dist/main/main.js",
"scripts": {
"dev": "npm run esbuild-main && npm run esbuild-preload && concurrently \"vite --config ./vite.config.render.ts\" \"electron .\"",
"build": "npm run esbuild-main && npm run esbuild-preload && vite build --config ./vite.config.render.ts",
"ts": "tsc -p src/tsconfig.json && tsc-alias -p src/tsconfig.json && tsc -p src/preload/tsconfig.json",
"test": "npx vitest --config src/tests/vitest.config.ts run",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"esbuild-main": "node build-main.mjs",
"esbuild-preload": "node build-preload.mjs",
"build-for-windows": "npm run build && dotenv -e .env -- electron-builder --publish always",
"build-for-linux": "npm run build && dotenv -e .env -- electron-builder --linux"
},
"build": {
"appId": "com.astrofoxlabs.clusta",
"productName": "Clusta",
"directories": {
"buildResources": "assets",
"output": "release"
},
"extraResources": [
{
"from": "assets/defaults",
"to": "defaults"
}
],
"files": [
"dist/**/*",
"package.json"
],
"asar": true,
"mac": {
"target": "dmg"
},
"win": {
"target": [
"nsis",
"portable",
"zip"
],
"publish": [
"github"
]
},
"linux": {
"target": "AppImage",
"publish": [
"github"
]
},
"publish": {
"provider": "github",
"owner": "AstroFoxLabs",
"repo": "Clusta"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"tabWidth": 4
},
"devDependencies": {
"@preact/preset-vite": "^2.10.2",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-vue": "^6.0.3",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"electron": "^39.2.2",
"electron-builder": "^26.8.1",
"electron-updater": "^6.8.3",
"esbuild": "^0.27.3",
"prettier": "^3.8.1",
"sass-embedded": "^1.96.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18",
"@vscode/codicons": "^0.0.44",
"electron-log": "^5.4.3",
"file-type": "^21.3.0",
"fuse.js": "^7.1.0",
"pinia": "^3.0.4",
"preact": "^10.28.2",
"sharp": "^0.34.5",
"sqlite3": "^5.0.2",
"vite": "^7.2.7",
"vue": "^3.5.25",
"vue-router": "^4.6.4"
}
}