-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "yees",
"description": "Control your Yeelights",
"author": {
"name": "Aaron Carneiro",
"email": "hello@aaroncarneiro.com",
"url": "https://aaroncarneiro.com"
},
"version": "1.0.0",
"scripts": {
"dev": "electron-esbuild dev",
"build": "electron-esbuild build",
"postbuild": "cp -r ./src/main/assets ./dist/main/assets",
"package": "electron-builder"
},
"devDependencies": {
"@types/node": "16.x",
"@types/react": "17.x",
"@types/react-dom": "17.x",
"@vitejs/plugin-react": "~1.3",
"electron": "18.x",
"electron-builder": "22.x",
"electron-esbuild": "5.x",
"electron-util": "0.17.x",
"esbuild": "0.x",
"react": "17.x",
"react-dom": "17.x",
"typescript": "~4.6.3",
"vite": "~2.9"
},
"build": {
"appId": "com.aaroncarneiro.yees",
"productName": "Yees",
"extraMetadata": {
"name": "Yees",
"main": "main.js"
},
"files": [
{
"from": ".",
"filter": [
"package.json"
]
},
{
"from": "dist/main"
},
{
"from": "dist/renderer"
}
],
"win": {
"target": [
"zip"
]
},
"mac": {
"target": [
"zip"
]
},
"linux": {
"target": [
"zip"
]
},
"directories": {
"buildResources": "resources"
},
"publish": null
},
"dependencies": {
"local-devices": "^3.2.0",
"styled-components": "^5.3.5",
"yeelight-awesome": "^1.1.0"
}
}