-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.59 KB
/
package.json
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
{
"name": "csgo-hud",
"version": "0.0.8",
"description": "CSGO Custom HUD",
"author": {
"name": "redsparr0w",
"steam": "http://steamcommunity.com/id/redsparr0w",
"github": "https://github.com/RedSparr0w"
},
"maintainers": [
{
"name": "redsparr0w",
"email": "admin@redsparr0w.com"
}
],
"bugs": {
"email": "admin@redsparr0w.com",
"url": "https://github.com/RedSparr0w/csgo-hud/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/RedSparr0w/csgo-hud.git"
},
"homepage": "http://redsparr0w.com",
"dependencies": {
},
"devDependencies": {
},
"license": "MIT",
"scripts" : {
"test": "nwbuild -r ./ || npm install nw-builder -g && nwbuild -r ./ || echo \u001b[31;1mEnsure you have installed Node.js then try again\u001b[0m && pause",
"start": "npm test",
"preinstall": "npm list nw-builder -g || npm install nw-builder -g || echo \u001b[31;1mEnsure you have installed Node.js then try again\u001b[0m && pause",
"build": "nwbuild ./ -o ../builds -p win64,win32 --winIco ./logo.ico || npm install nw-builder -g && nwbuild ./ -o ../builds -p win64,win32 --winIco ./logo.ico || echo \u001b[31;1mEnsure you have installed Node.js then try again\u001b[0m && pause",
"postbuild": "postbuild.bat"
},
"main": "index.html",
"chromium-args": "--disable-gpu --force-cpu-draw",
"window": {
"title": "CSGO HUD",
"icon": "logo.png",
"toolbar": false,
"frame": false,
"width": 1920,
"height": 1080,
"position": "center",
"transparent": true
},
"webkit": {
"plugin": true
}
}