-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "cnnct-crypto-tracker",
"productName": "Crypto Tracker",
"version": "1.2.1",
"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"
},
"keywords": [],
"author": "Connect Dorset",
"license": "ISC",
"devDependencies": {
"electron": "^22.0.0",
"electron-builder": "^23.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hybes/crypto-tracker-mac.git"
},
"dependencies": {
"@sentry/electron": "^4.14.0",
"autoprefixer": "^10.4.16",
"axios": "^1.2.2",
"electron-settings": "^4.0.2",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5"
},
"build": {
"appId": "cnnct.crypto-tracker",
"productName": "Crypto Tracker",
"mac": {
"icon": "./build/macIcon.icns",
"category": "cnnct.crypto-tracker",
"target": [
{
"target": "default",
"arch": [
"x64",
"arm64"
]
}
]
}
}
}