-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.5 KB
/
package.json
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
{
"name": "Essentials",
"description": "Essentials softwares for your computer",
"version": "24.05.24",
"private": true,
"main": "electron/main.js",
"homepage": "https://github.com/Yagasaki7K/website-essentials",
"author": {
"name": "Anderson Marlon",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Yagasaki7K/website-essentials/issues",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"vercel": "next build",
"start": "next start",
"lint": "next lint",
"commit": "bun update && bun run vercel && read -p 'Descriptions Commit: ' message && git add . && echo -n \"$message - \" && node getTime.js | xargs -I {} git commit -m \"$message - {}\" && git push",
"electron-dev": "concurrently \"bun run dev\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "next build && electron-builder"
},
"build": {
"appId": "com.essentials.2406",
"icon": "./public/favicon.png",
"win": {
"target": ["nsis", "portable", "msi"]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"maintainer": "Anderson Marlon <[email protected]>"
}
},
"dependencies": {
"concurrently": "^8.2.2",
"next": "14.2.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^1.5.0",
"styled-components": "^6.1.13",
"wait-on": "^7.2.0"
},
"devDependencies": {
"electron": "^30.5.1",
"electron-builder": "^24.13.3"
}
}