-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 KB
/
package.json
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
{
"private": true,
"name": "sammcj.llm-parameter-playground",
"version": "1.0.0",
"author": "Sam McLeod (@sammcj)",
"description": "A playground for exploring inference parameters with LLM models.",
"icon": "out/logo.png",
"homepage": "https://github.com/sammcj/parameter-playground",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"electron-dev": "concurrently \"npm:dev\" \"node_modules/.bin/wait-on http://localhost:3000 && electron .\"",
"electron-pack": "pnpm run build && electron-builder --linux AppImage --mac dir --config -c.mac.identity=null"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "1.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"concurrently": "^7.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.414.0",
"next": "^14.2.5",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-spring": "^9.7.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"use-scramble": "^2.2.15",
"wait-on": "^7.2.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"autoprefixer": "^10.4.19",
"electron": "^31.2.1",
"electron-builder": "^24.13.3",
"electron-reloader": "^1.2.3",
"postcss": "^8.4.39",
"tailwindcss": "^3.4.6",
"typescript": "5.5.3"
},
"main": "main.js",
"build": {
"appId": "com.sammcj.llm-parameter-playground",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "out/logo.png",
"target": "dir"
},
"linux": {
"target": "AppImage",
"category": "Development",
"icon": "out/logo.png",
"executableName": "llm-parameter-playground"
}
}
}