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
|
{
"name": "viper",
"productName": "Viper",
"version": "1.0.0",
"description": "Launcher+Updater for TF|2 Northstar",
"main": "src/index.js",
"build": {
"appId": "com.0negal.viper",
"directories": {
"buildResources": "src/assets/icons"
},
"nsis": {
"installerIcon": "icon.ico",
"uninstallerIcon": "icon.ico",
"installerHeaderIcon": "icon.ico"
}
},
"scripts": {
"start": "npx electron src/index.js",
"debug": "npx electron src/index.js --debug",
"man": "npx marked-man docs/viper.1.md > docs/viper.1",
"build": "npx electron-builder --win nsis --linux appimage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0neGal/viper.git"
},
"author": "0neGal",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/0neGal/viper/issues"
},
"homepage": "https://github.com/0neGal/viper#readme",
"dependencies": {
"follow-redirects": "^1.14.6",
"marked-man": "^0.7.0",
"request": "^2.88.2",
"unzipper": "^0.10.11"
},
"devDependencies": {
"electron": "^16.0.5",
"electron-builder": "^22.14.5"
}
}
|