-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.18 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": "spectra",
"productName": "Spectra",
"version": "1.0.0",
"description": "White keyboard backlight control for Lenovo LOQ 15IRX9",
"main": "electron/main.cjs",
"private": true,
"scripts": {
"dev": "concurrently -k \"vite\" \"wait-on tcp:5173 && electron .\"",
"build": "vite build",
"start": "vite build && electron .",
"dist": "vite build && electron-builder --linux AppImage deb"
},
"build": {
"appId": "dev.g3nix.spectra",
"files": [
"dist/**",
"electron/**",
"resources/**"
],
"linux": {
"category": "Utility",
"icon": "resources/icons",
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {},
"devDependencies": {
"@fontsource/chakra-petch": "^5.1.0",
"@fontsource/ibm-plex-mono": "^5.1.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"electron": "^33.3.1",
"electron-builder": "^25.1.8",
"framer-motion": "^11.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vite": "^6.0.7",
"wait-on": "^8.0.1"
},
"author": "Kareem Aksh <hello@kareemaksh.com>",
"homepage": "https://github.com/KareemAksh/SPECTRA"
}