-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.48 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.48 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
{
"name": "nextjs_approuter_electron",
"version": "2.0.0",
"private": true,
"homepage": "https://saybackend.com",
"author": {
"name": "spa5k",
"email": "admin@saybackend.com",
"url": "https://saybackend.com"
},
"main": "build/main.js",
"description": "NextJS App with Electron",
"scripts": {
"build": "run-s next:build electron:build",
"dev": "npm-run-all --parallel electron:dev next:dev",
"dist": "run-s build electron:dist",
"electron:build_watch": "tsup --watch",
"electron:build": "tsup",
"electron:dev": "npm-run-all --parallel electron:build_watch electron:watch",
"electron:dist:deb": "electron-builder --linux deb",
"electron:dist": "electron-builder --dir",
"electron:watch": "cross-env NODE_ENV='development' nodemon",
"format": "dprint fmt",
"next:build": "next build --turbopack",
"next:dev": "next dev --turbopack",
"next:lint": "eslint",
"next:start": "next start",
"postinstall": "electron-builder install-app-deps",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@electron-toolkit/utils": "^4.0.0",
"@next/env": "^15.5.4",
"get-port-please": "^3.2.0",
"next": "^15.5.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"sharp": "^0.34.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.6.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"cross-env": "^10.1.0",
"dprint": "^0.50.2",
"electron": "^38.2.1",
"electron-builder": "^26.0.12",
"eslint": "^9.37.0",
"eslint-config-next": "^15.5.4",
"nodemon": "^3.1.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.14",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"build": {
"asar": true,
"executableName": "NextJSElectron",
"appId": "com.saybackend.nextjs-electron",
"asarUnpack": [
"node_modules/next",
"node_modules/@img",
"node_modules/sharp",
"**\\*.{node,dll}"
],
"files": [
"build",
{
"from": ".next/standalone",
"to": "app",
"filter": [
"!**/.env",
"!**/package.json"
]
},
{
"from": ".next/static",
"to": "app/.next/static"
},
{
"from": "public",
"to": "app/public"
}
],
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"deb"
],
"category": "Development"
}
}
}