-
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.97 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.97 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": "habit-os",
"private": true,
"version": "1.0.0",
"description": "Minimalist Local-First Personal Productivity & Habit Operating System with Verified Focus & AI Analyst",
"type": "module",
"main": "electron/main.js",
"author": "Project Hellhound <project-hellhound-org>",
"homepage": "https://github.com/project-hellhound-org/Habbit-Tracker",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest run",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "npm run build && electron-builder"
},
"build": {
"appId": "com.projecthellhound.habitos",
"productName": "Habit OS",
"copyright": "Copyright © 2026 Project Hellhound",
"directories": {
"output": "dist_electron"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "public/icon.png",
"category": "Utility"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "public/icon.png"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "public/icon.png",
"category": "public.app-category.productivity"
}
},
"dependencies": {
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"lucide-react": "^0.395.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^8.2.2",
"electron": "^31.7.7",
"electron-builder": "^24.13.3",
"typescript": "^5.5.4",
"vite": "^5.4.14",
"vitest": "^2.1.8",
"wait-on": "^7.2.0"
}
}