-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
{
"name": "psx-emulator",
"version": "0.1.0",
"private": true,
"description": "Apple-inspired PS1 desktop emulator shell built with Electron, Next.js, and Tailwind CSS.",
"author": "Gilang",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently -k \"npm:dev:web\" \"npm:dev:electron\"",
"dev:web": "next dev --hostname 127.0.0.1 --port 3000",
"dev:electron": "wait-on http://127.0.0.1:3000 && cross-env ELECTRON_START_URL=http://127.0.0.1:3000 electron .",
"build": "next build",
"start": "cross-env NODE_ENV=production electron .",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"lint": "eslint",
"postinstall": "node scripts/copy-pcsxjs.mjs"
},
"dependencies": {
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5",
"wait-on": "^9.0.4"
},
"build": {
"appId": "dev.gilang.aetherstation",
"productName": "AetherStation",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"copyright": "Copyright © 2026 Gilang",
"directories": {
"buildResources": "build"
},
"files": [
"out/**/*",
"electron/**/*",
"package.json"
],
"icon": "build/icon.icns",
"mac": {
"category": "public.app-category.entertainment",
"icon": "build/icon.icns"
},
"win": {
"target": ["nsis", "portable"],
"icon": "build/icon.png"
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "build/icon.png",
"category": "Game"
}
}
}