-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 1.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "unofficial-desktop-for-ynab",
"productName": "Unofficial Desktop for YNAB",
"author": "Open Source Community",
"version": "0.2.0",
"description": "A desktop wrapper for YNAB",
"main": "main.js",
"scripts": {
"start": "electron --enable-logging ./app",
"debug": "electron --debug=5858 ./app",
"node-debugger": "ELECTRON_RUN_AS_NODE=true electron node_modules/node-inspector/bin/inspector.js",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build",
"dist-mac": "build -m --publish onTagOrDraft",
"dist-lin-win": "build -lw --publish onTagOrDraft",
"clean": "rm -rf dist"
},
"build": {
"appId": "com.toolkit-for-ynab.unofficial-desktop-for-ynab",
"app-category-type": "public.app-category.finance",
"fileAssociations": [
{
"ext": "qif",
"name": "Quicken Interchange Format"
},
{
"ext": "ofx",
"name": "Open Financial Exchange"
},
{
"ext": "csv",
"name": "Comma Separated Values"
}
],
"extend-info": "./build/Add-Info.plist",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolkit-for-ynab/unofficial-desktop-for-ynab.git"
},
"bugs": {
"url": "https://github.com/toolkit-for-ynab/unofficial-desktop-for-ynab/issues"
},
"devDependencies": {
"electron-builder": "^5.23.2",
"electron-prebuilt": "^1.2.0"
},
"dependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"typescript": "^1.8.10",
"yauzl": "^2.6.0"
}
}