-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
51
52
53
54
55
56
57
{
"name": "stella",
"version": "1.0.0",
"description": "A versatile and user-friendly tool for interacting with the CAN bus",
"type": "module",
"main": "src/electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"electron .\"",
"electron:build": "vite build && electron-builder",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"format": "prettier --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/shishir-dey/Stella.git"
},
"keywords": [
"automotive",
"can",
"gui"
],
"author": "Shishir Dey",
"license": "MIT",
"bugs": {
"url": "https://github.com/shishir-dey/Stella/issues"
},
"homepage": "https://github.com/shishir-dey/Stella#readme",
"dependencies": {
"electron-store": "^10.0.1",
"lucide-react": "^0.474.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^9.1.2",
"electron": "^34.0.2",
"electron-builder": "^25.1.8",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"postcss": "^8.4.31",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.3",
"vite": "^6.0.11"
}
}