-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.7 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.7 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": "cluelessly",
"version": "1.1.0",
"description": "A powerful desktop application that helps developers solve coding problems by analyzing screenshots of code and also provides a conversational AI assistant for every users!",
"main": "./out/main/index.js",
"author": "https://github.com/Xeven777",
"homepage": "https://cluelessly.netlify.app/",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@ai-sdk/cerebras": "^1.0.0",
"@ai-sdk/google": "^2.0.0",
"@ai-sdk/groq": "^2.0.0",
"@ai-sdk/openai": "^2.0.0",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-toast": "^1.2.14",
"@tailwindcss/postcss": "^4.1.11",
"@tanstack/react-query": "^5.84.1",
"@types/react-syntax-highlighter": "^15.5.13",
"ai": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.536.0",
"openai": "^5.11.0",
"postcss": "^8.5.6",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"screenshot-desktop": "^1.15.1",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.11",
"uuid": "^11.1.0",
"zod": "^4.0.14"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^3.0.1",
"@types/node": "^22.17.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^4.7.0",
"electron": "37.2.5",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.0",
"eslint": "^9.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"typescript": "^5.9.2",
"vite": "^7.0.6"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"esbuild"
]
}
}