This repository has been archived by the owner on Feb 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.52 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
{
"name": "am-i-burning",
"version": "0.1.0",
"description": "A minimal check for termal throttling",
"main": "main.js",
"scripts": {
"start": "electron . -w",
"dist": "dotenv -- electron-builder -p always -m"
},
"repository": "https://github.com/marcofaggian/am-i-burning",
"keywords": [
"mac",
"throttling",
"burning"
],
"author": "Marco Faggian <[email protected]>",
"license": "CC0-1.0",
"devDependencies": {
"dotenv-cli": "^3.1.0",
"electron": "^9.0.0",
"electron-builder": "^22.7.0"
},
"dependencies": {},
"build": {
"productName": "Am I Burning?",
"appId": "org.marcofaggian.AmIBurning",
"files": [
"images/",
"resources",
"node_modules/",
"index.html",
"main.js",
"preload.js",
"package.json"
],
"mac": {
"category": "public.app-category.utilities"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"msi"
]
},
"linux": {
"target": [
"deb",
"rpm",
"AppImage"
],
"category": "Utility"
},
"directories": {
"buildResources": "icons",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "marcofaggian",
"repo": "am-i-burning",
"private": false
}
}
}