forked from kreativgebiet/taskana
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 1.95 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "taskana",
"productName": "Taskana",
"version": "1.18.0",
"description": "Application wrapper for Asana",
"keywords": ["macOS", "wrapper", "electron", "asana", "tasks"],
"author": "Nick Schmidt <[email protected]>",
"contributors": [
{
"name": "Mountain/\\Ash"
},
{
"name": "Dominik Schmidt"
},
{
"name": "Jonas Schmitt"
}
],
"repository": {
"type": "git",
"url": "[email protected]:mountainash/taskana.git"
},
"homepage": "https://github.com/mountainash/taskana",
"bugs": {
"url": "https://github.com/mountainash/taskana/issues"
},
"license": "MIT",
"type": "module",
"scripts": {
"start": "electron .",
"start:debug": "ELECTRON_DEBUG=true npm run start",
"lint": "biome check",
"build": "electron-builder",
"build:dir": "electron-builder --mac --dir",
"release": "electron-builder build --publish always"
},
"dependencies": {
"electron-context-menu": "4.0.4",
"electron-store": "10.0.0",
"electron-updater": "6.3.9",
"keytar": "7.9.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"electron": "32.1.2",
"electron-builder": "25.1.7"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.12.2"
},
"build": {
"appId": "com.mountainash.${name}",
"copyright": "MIT",
"productName": "Taskana",
"forceCodeSigning": true,
"removePackageKeywords": false,
"publish": [
{
"provider": "github",
"owner": "mountainash",
"repo": "taskana"
}
],
"mac": {
"category": "public.app-category.productivity",
"target": {
"target": "default",
"arch": ["x64", "arm64"]
}
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
}
}