-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.29 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.29 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
{
"name": "code-loop",
"version": "1.0.0",
"description": "Electron UI for managing AI-powered code generation pipelines",
"packageManager": "pnpm@10.26.2",
"main": "dist-electron/main/index.js",
"scripts": {
"dev": "vite",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix --max-warnings=0",
"typecheck": "tsc --noEmit",
"build:app": "tsc && vite build",
"build": "pnpm build:app && electron-builder",
"build:dir": "pnpm build:app && electron-builder --dir",
"preview": "vite preview",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.natelindev.code-loop",
"productName": "CodeLoop",
"electronDist": "node_modules/electron/dist",
"directories": {
"output": "release"
},
"files": [
"dist/**",
"dist-electron/**",
"package.json"
],
"extraResources": [
{
"from": "scripts",
"to": "scripts"
},
{
"from": "logo.png",
"to": "logo.png"
}
],
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.developer-tools"
}
},
"dependencies": {
"anser": "^2.3.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.575.0",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@tailwindcss/vite": "^4.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.21",
"electron": "^40.6.0",
"electron-builder": "^26.8.1",
"eslint": "^9.39.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"shadcn": "^3.8.5",
"tailwindcss": "^4.2.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.56.0",
"vite": "^6.3.5",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6"
},
"pnpm": {
"onlyAllowTrustedDependencies": false,
"trustedDependencies": [
"electron",
"electron-winstaller",
"esbuild",
"msw"
]
}
}