-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"name": "octaveclock",
"description": "A unique 8-hour cycle clock with 64 ticks.",
"author": "Luca Merendino",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron.cjs",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/OctaveClock.git"
},
"keywords": [
"clock",
"react",
"typescript",
"tailwind",
"vite",
"time",
"minimalist",
"svg"
],
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"electron:dev": "cross-env NODE_ENV=development electron .",
"electron:build": "npm run build && electron-builder"
},
"build": {
"appId": "com.mere94.octaveclock",
"productName": "OctaveClock",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron.cjs"
],
"win": {
"target": "portable"
}
},
"dependencies": {
"@google/genai": "^1.29.0",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.1.0",
"electron": "^41.0.3",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.4"
}
}