-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
{
"name": "echo",
"version": "0.1.0",
"private": true,
"main": "main.js",
"type": "module",
"scripts": {
"start": "electron .",
"dev": "electron .",
"pack": "electron-builder --dir",
"dist": "npm run tw:build && electron-builder",
"tw:dev": "tailwindcss -i ./src/tw.css -o ./src/styles.css --watch",
"tw:build": "tailwindcss -i ./src/tw.css -o ./src/styles.css --minify"
},
"dependencies": {
"dotenv": "^16.4.5",
"keytar": "^7.9.0"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"electron": "^31.4.0",
"electron-builder": "^24.13.3",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
},
"build": {
"appId": "com.eduten.echo",
"productName": "Echo",
"files": [
"main.js",
"preload.cjs",
"config.json",
"src/**/*",
"providers/**/*"
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}