-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.45 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
{
"name": "mclocks",
"description": "Free desktop clock for multiple time zones🕒🌍🕕",
"version": "0.1.19",
"author": "Dai Okabayashi <[email protected]> (https://github.com/bayashi)",
"license": "Artistic-2.0",
"keywords": [
"clock",
"date",
"time",
"timezone"
],
"main": "src/main.js",
"scripts": {
"start": "electron src"
},
"env": {
"NODE_ENV": "DEBUG"
},
"repository": {
"type": "git",
"url": "[email protected]:bayashi/mclocks.git"
},
"bugs": {
"url": "https://github.com/bayashi/mclocks/issues"
},
"dependencies": {
"electron-store": "^5.2.0",
"electron-window-state": "^5.0.3",
"cdate": "0.0.4"
},
"devDependencies": {
"ansi-regex": ">=5.0.1",
"electron": "^19.1.9",
"electron-builder": "23.6.0"
},
"build": {
"appId": "net.bayashi.mclock",
"directories": {
"output": "dist"
},
"files": [
"src/*",
"src/lib/*",
"package.json",
"package-lock.json",
"assets"
],
"win": {
"icon": "assets/favicon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.utilities"
},
"dmg": {
"sign": false
}
}
}