-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.83 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.83 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "personal-cluely",
"version": "1.0.0",
"main": "./dist-electron/main.js",
"scripts": {
"clean": "rimraf dist dist-electron",
"dev": "vite",
"build": "npm run clean && tsc && vite build",
"preview": "vite preview",
"electron:dev": "tsc -p electron/tsconfig.json && electron .",
"app:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && cross-env electron .\"",
"app:build": "npm run build && electron-builder",
"watch": "tsc -p electron/tsconfig.json --watch"
},
"build": {
"appId": "com.electron.personal-cluely",
"productName": "personal cluely",
"files": [
"dist/**/*",
"dist-electron/**/*",
"package.json"
],
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"publish": [
{
"provider": "github",
"owner": "ibttf",
"repo": "personal-cluely"
}
]
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/color": "^4.2.0",
"@types/diff": "^6.0.0",
"@types/electron": "^1.4.38",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/screenshot-desktop": "^1.12.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"electron-is-dev": "^3.0.1",
"postcss": "^8.4.49",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"wait-on": "^8.0.1"
},
"dependencies": {
"@deepgram/sdk": "^4.7.0",
"@google/genai": "^0.12.0",
"@google/generative-ai": "^0.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-toast": "^1.2.2",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"diff": "^7.0.0",
"form-data": "^4.0.1",
"lamejs": "^1.2.1",
"lucide-react": "^0.460.0",
"react": "^18.3.1",
"react-code-blocks": "^0.1.6",
"react-dom": "^18.3.1",
"react-icons": "^5.3.0",
"react-query": "^3.39.3",
"react-syntax-highlighter": "^15.6.1",
"screenshot-desktop": "^1.15.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.5.4",
"tesseract.js": "^5.0.5",
"uuid": "^11.0.3"
}
}