-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.13 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 4.13 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
111
112
113
114
115
116
117
118
119
{
"name": "my-offline-llm-tool",
"version": "1.2.2",
"description": "Generate finely-tuned LLM prompts from your code base.",
"author": {
"name": "Aytug Berk Sezer",
"email": "aytugsezer@gmail.com"
},
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "node scripts/run-next-dev.js",
"build": "npx --yes node@20 ./node_modules/next/dist/bin/next build",
"export": "npm run build",
"start": "echo \"For Electron app, use 'npm run electron:prod:local' or run the packaged application. 'npm start' (next start) is not used with 'output: export'. To serve a static export, use 'npm run electron:prod:local'.\"",
"lint": "eslint pages components lib services stores views types scripts electron --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"typecheck": "tsc --noEmit",
"backend": "node scripts/run-backend.js",
"backend:prod": "node scripts/run-backend.js --prod",
"postinstall": "node scripts/postinstall.js",
"electron:dev": "concurrently --kill-others \"npm run dev\" \"npm run backend\" \"wait-on tcp:5010 tcp:3010 && node scripts/run-electron.js\"",
"electron:prod:local": "npm run build && cross-env APP_ENV=production concurrently --kill-others \"npm run backend:prod\" \"node scripts/run-electron.js\"",
"electron:prod:local:nobuild": "cross-env APP_ENV=production concurrently --kill-others \"npm run backend:prod\" \"node scripts/run-electron.js\"",
"electron:pack": "npm run build && electron-builder --dir",
"electron:build:linux": "npm run build && electron-builder --linux deb AppImage",
"test:unit": "npx --yes tsx --test tests/*.test.ts",
"test": "npm run test:unit && node scripts/autotest.js"
},
"engines": {
"node": ">=20"
},
"engine-strict": true,
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hello-pangea/dnd": "^18.0.1",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.2.6",
"@tailwindcss/typography": "^0.5.16",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"fuse.js": "^7.1.0",
"immer": "^10.0.4",
"lucide-react": "^0.477.0",
"next": "^15.3.1",
"node-fetch": "^3.3.2",
"picomatch": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.11",
"swr": "^2.3.0",
"tailwind-merge": "^3.0.2",
"tiktoken": "^1.0.3",
"typescript": "5.2.2",
"zod": "^3.24.4",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/node": "18.17.12",
"@types/react": "^19.1.5",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^29.3.3",
"electron-builder": "^24.13.1",
"electron-reload": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "13.4.8",
"jest-fetch-mock": "^3.0.3",
"kill-port": "^2.0.1",
"postcss": "^8.4.49",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.16",
"wait-on": "^7.0.1",
"xvfb": "^0.2.1"
},
"build": {
"productName": "CodeToPromptGenerator",
"asar": true,
"files": [
"electron/**/*",
"out/**/*",
"python_backend/**/*",
"package.json"
],
"extraResources": [
{
"from": "python_backend",
"to": "python_backend"
}
],
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Development",
"maintainer": "Aytug Berk Sezer",
"synopsis": "Generate finely-tuned LLM prompts from your code base"
}
}
}