-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "cnnct-http-mac-menu",
"productName": "HTTP Mac Menu",
"version": "1.6.0",
"description": "An app to allow users to keep track of crypto in the tray.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tailwindcss build -i styles.css -o output.css && electron .",
"pack": "tailwindcss build -i styles.css -o output.css && electron-builder --dir",
"dist": "tailwindcss build -i styles.css -o output.css && electron-builder",
"postinstall": "electron-builder install-app-deps",
"publish": "node publish.js"
},
"keywords": [],
"author": "Connect Dorset",
"license": "ISC",
"devDependencies": {
"electron": "^29.3.0",
"electron-builder": "^24.13.3"
},
"repository": {
"type": "git",
"url": "https://github.com/hybes/http-mac-menu.git"
},
"dependencies": {
"@sentry/electron": "^4.22.0",
"autoprefixer": "^10.4.19",
"axios": "^1.6.8",
"electron-settings": "^4.0.2",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3"
},
"build": {
"appId": "cnnct.crypto-tracker",
"productName": "HTTP Mac Menu",
"mac": {
"icon": "./build/macIcon.icns",
"category": "cnnct.http-mac-menu",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
}
}
}