aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 3dec425e7f6f9f2f702d0c120124b4ce5f16ec89 (plain)
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
{
	"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"
		},
		"linux": {
			"icon": "512x512.png",
			"category": "Game",
			"target": [
				"AppImage",
				"snap",
				"deb",
				"rpm",
				"tar.gz"
			]
		}
	},
	"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 --win portable --linux",
		"build:windows": "npx electron-builder --win nsis --win portable",
		"build:linux": "npx electron-builder --linux"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/0neGal/viper.git"
	},
	"author": "0neGal <mail@0negal.com>",
	"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"
	}
}