-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.27 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.27 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
{
"name": "keytimer",
"version": "1.6.2",
"description": "A keyboard-first productivity timer with task management and gamification features",
"main": "desktop/main.js",
"scripts": {
"start": "electron desktop/main.js",
"start:screenshot": "APP_STORE_SCREENSHOT=true electron desktop/main.js",
"build:desktop": "electron-builder --publish never",
"build:desktop:mac": "electron-builder --mac --publish never",
"build:desktop:mas": "unset CSC_NAME CSC_IDENTITY; electron-builder --mac mas --universal --publish never",
"build:desktop:win": "electron-builder --win --publish never",
"build:desktop:linux": "electron-builder --linux --publish never",
"dev:desktop": "electron desktop/main.js",
"package:extension": "node scripts/package-extension.js"
},
"keywords": [
"timer",
"pomodoro",
"productivity",
"task-management"
],
"author": {
"name": "Visual Timer",
"email": "visualtimer@example.com"
},
"license": "ISC",
"devDependencies": {
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"jimp": "^1.6.0"
},
"build": {
"appId": "com.iandmiller.visualtimer",
"productName": "Visual Timer",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"desktop/**/*",
"!desktop/**/*.map"
],
"mac": {
"category": "public.app-category.productivity",
"icon": "desktop/assets/icon-1024.png",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": false,
"gatekeeperAssess": false
},
"win": {
"target": [
"nsis",
"zip"
],
"icon": "desktop/assets/icon-1024.png"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"icon": "desktop/assets/icon.png",
"maintainer": "visualtimer@example.com"
},
"mas": {
"category": "public.app-category.productivity",
"icon": "desktop/assets/icon.icns",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"entitlements": "desktop/entitlements.mas.plist",
"entitlementsInherit": "desktop/entitlements.mas.inherit.plist",
"type": "distribution",
"minimumSystemVersion": "12.0",
"target": [
"pkg"
]
}
}
}