-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "human-mode",
"private": true,
"version": "0.1.0",
"description": "A local-first macOS app that adds a speed bump before reflexive AI use.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/roccia/human_mode.git"
},
"keywords": [
"tauri",
"react",
"desktop",
"macos",
"focus",
"productivity",
"local-first",
"ai-blocker",
"ai",
"privacy"
],
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"test": "npm run test:local-only && npm run test:catalog-links",
"test:local-only": "node scripts/check-local-only.mjs",
"test:catalog-links": "node scripts/check-catalog-links.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:build": "tauri build"
},
"dependencies": {
"@fontsource/montserrat": "^5.2.8",
"@phosphor-icons/react": "^2.1.10",
"@tailwindcss/vite": "^4.3.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.3.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}