-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.98 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.98 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
{
"name": "stripcol",
"version": "1.1.2",
"description": "Flight strip manager for Vatsim Colombia",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build",
"publish": "electron-builder build --publish always"
},
"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"
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"runAfterFinish": true
},
"publish": [
{
"provider": "github",
"owner": "Simplezes",
"repo": "StripCol"
}
],
"files": [
"src/**/*",
"package.json"
]
},
"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": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/node": "^25.2.3",
"electron": "^40.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"electron-builder": "^25.1.8",
"electron-packager": "^17.1.2"
},
"dependencies": {
"cors": "^2.8.6",
"discord-rpc": "^4.0.1",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"fs": "^0.0.1-security",
"ws": "^8.19.0",
"electron-updater": "^6.3.9"
}
}