-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 892 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 892 Bytes
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
{
"name": "levelhandler",
"version": "1.1.0",
"description": "Open GRAB .level files",
"main": "main.js",
"keywords": [],
"author": "twhlynch",
"license": "ISC",
"devDependencies": {
"electron": "^30.0.3",
"electron-builder": "^24.13.3"
},
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build-win": "electron-builder --win",
"test": "electron . ./test.level"
},
"dependencies": {
"protobufjs": "^6.11.2"
},
"homepage": "https://twhlynch.me",
"build": {
"appId": "LevelHandler",
"productName": "Level Handler",
"fileAssociations": [
{
"ext": "level",
"name": "GRAB Level",
"description": "GRAB Level",
"role": "Viewer"
}
],
"dmg": {
"icon": "icons/icon.icns"
},
"win": {
"icon": "icons/icon.ico",
"target": "nsis"
}
}
}