-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 1.96 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 1.96 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "whale",
"productName": "Whale",
"version": "3.0.0",
"description": "Whale app",
"private": true,
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com:1000ch/whale.git"
},
"author": {
"name": "Shogo Sensui",
"email": "shogosensui@gmail.com",
"url": "https://github.com/1000ch"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"postversion": "git push && git push --tags",
"test": "xo",
"start": "electron .",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder --macos --linux --windows",
"build": "tsc"
},
"dependencies": {
"electron-context-menu": "^4.1.2",
"electron-dl": "^4.0.0",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3"
},
"devDependencies": {
"electron": "^42.0.1",
"electron-builder": "^26.8.1",
"typescript": "^6.0.3",
"xo": "^2.0.2"
},
"main": "out/index.js",
"build": {
"files": [
"**/*",
"!asset"
],
"appId": "net.1000ch.whale",
"publish": {
"provider": "github",
"owner": "1000ch",
"repo": "whale"
},
"mac": {
"category": "public.app-category.productivity",
"darkModeSupport": true,
"icon": "static/Icon.icns"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
],
"synopsis": "Unofficial Trello app",
"description": "Whale is unofficial app for Trello.",
"category": "ProjectManagement"
},
"win": {
"verifyUpdateCodeSignature": false
}
},
"xo": {
"space": 2,
"rules": {
"@typescript-eslint/strict-void-return": 0
}
}
}