-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "produchive",
"productName": "produchive",
"version": "3.0.0",
"description": "Produchive - A self-hosted productivity app",
"main": ".vite/build/main.js",
"private": true,
"scripts": {
"start": "electron-forge start",
"start:qa": "cross-env VITE_API_URL=https://api.produchive.com VITE_WEB_URL=https://produchive-web-qa.vercel.app electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"make:qa": "cross-env VITE_API_URL=https://api.produchive.com VITE_WEB_URL=https://produchive-web-qa.vercel.app electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"test": "vitest run",
"test:watch": "vitest",
"postinstall": "patch-package"
},
"keywords": [],
"author": "Rishi",
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-dmg": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-forge/maker-squirrel": "^7.11.1",
"@electron-forge/maker-wix": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron-forge/publisher-github": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@types/canvas-confetti": "^1.9.0",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.175.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^6.0.0",
"@webgpu/types": "^0.1.69",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"electron": "^42.0.1",
"electron-forge-maker-nsis": "^26.15.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"node-abi": "^4.31.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.9.3",
"vite": "^8.0.12",
"vitest": "^4.1.0"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.80",
"@react-three/drei": "^10.0.0",
"@react-three/fiber": "^9.0.0",
"active-win": "^7.7.2",
"axios": "^1.16.1",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"electron-log": "^5.4.3",
"electron-squirrel-startup": "^1.0.1",
"ffi-napi": "npm:@napi-ffi/ffi-napi@^4.0.6",
"firebase": "^12.13.0",
"lottie-react": "^2.4.1",
"lowdb": "^7.0.1",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-is": "^19.2.6",
"recharts": "^3.7.0",
"ref-napi": "npm:@napi-ffi/ref-napi@^3.0.8",
"ref-struct-di": "^1.1.1",
"ref-wchar-napi": "^1.0.3",
"three": "^0.175.0",
"zustand": "^5.0.10"
},
"overrides": {
"node-abi": "^4.31.0",
"iconv": "npm:iconv-lite@^0.6.3",
"ref-napi": "npm:@napi-ffi/ref-napi@^3.0.8",
"ffi-napi": "npm:@napi-ffi/ffi-napi@^4.0.6"
}
}