-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.94 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 2.94 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "stripcol",
"version": "1.1.3",
"description": "Flight strip manager for Vatsim Colombia",
"main": "src/main.js",
"scripts": {
"start": "concurrently \"pnpm dev:vite\" \"cross-env NODE_ENV=development electron .\"",
"dev": "pnpm start",
"dev:vite": "vite",
"build:vite": "vite build",
"build:server": "esbuild src/server.js --bundle --platform=node --target=node18 --outfile=src/server.bundle.js",
"build": "pnpm run build:vite && pnpm run build:server && electron-builder build",
"publish": "pnpm run build:vite && pnpm run build:server && electron-builder build --publish always"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
},
"build": {
"appId": "com.simplezes.stripcol",
"productName": "StripCol",
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "src/client/img/icon.ico",
"extraFiles": [
{
"from": "plugin/StripCol.dll",
"to": "plugin/StripCol.dll"
},
{
"from": ".env",
"to": ".env"
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"runAfterFinish": true
},
"publish": [
{
"provider": "github",
"owner": "Simplezes",
"repo": "StripCol"
}
],
"files": [
"src/main.js",
"src/preload.js",
"src/server.bundle.js",
"src/rpc.js",
"src/client/dist/**/*",
"src/client/img/**/*",
"package.json"
],
"asarUnpack": [
"src/server.bundle.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simplezes/StripCol.git"
},
"keywords": [
"electron",
"nodejs",
"flight_strips",
"flight_manager",
"vatsim",
"vatsim_colombia"
],
"author": "Simplezes",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Simplezes/StripCol/issues"
},
"homepage": "https://github.com/Simplezes/StripCol#readme",
"devDependencies": {
"@tailwindcss/vite": "^4.1.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.2.3",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/sortablejs": "^1.15.8",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron": "^40.4.0",
"electron-builder": "^25.1.8",
"tailwindcss": "^4.1.4",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"cors": "^2.8.6",
"discord-rpc": "^4.0.1",
"dotenv": "^17.4.1",
"electron-updater": "^6.3.9",
"express": "^5.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ws": "^8.19.0",
"zustand": "^5.0.3"
}
}