This repository has been archived by the owner on Jan 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.07 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
{
"name": "ffxvi-mod-manager",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && cp -R .next/static ./.next/standalone/.next && cp -R public ./.next/standalone && cp -R ./.next/standalone ./src-tauri/ && sed -e 's/const currentPort = parseInt(process.env.PORT, 10) || 3000/const currentPort = parseInt(process.argv[2], 10) || 3000/' -e \"s/const hostname = process.env.HOSTNAME || '0.0.0.0'/const hostname = '127.0.0.1'/\" ./.next/standalone/server.js > ./src-tauri/standalone/server.js",
"start": "next start",
"lint": "next lint",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "NO_STRIP=true tauri build",
"shadcn:add": "bunx shadcn-ui@latest add"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/react-table": "^8.20.1",
"@tauri-apps/api": "^2.0.0-rc.1",
"@tauri-apps/plugin-dialog": "^2.0.0-rc.0",
"@tauri-apps/plugin-fs": "^2.0.0-rc.1",
"@tauri-apps/plugin-log": "^2.0.0-rc.0",
"@tauri-apps/plugin-process": "^2.0.0-rc.0",
"@tauri-apps/plugin-updater": "^2.0.0-rc.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lodash": "^4.17.21",
"lucide-react": "^0.435.0",
"next": "14.2.6",
"next-themes": "^0.3.0",
"react": "^18",
"react-dom": "^18",
"recoil": "^0.7.7",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"yaml": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@tauri-apps/cli": "^2.0.0-rc.4",
"@types/lodash": "^4.17.7",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"@yao-pkg/pkg": "^5.12.1",
"esbuild": "^0.23.1",
"eslint": "^9",
"eslint-config-next": "14.2.6",
"postcss": "^8",
"tailwindcss": "^3.4.10",
"typescript": "^5"
},
"trustedDependencies": ["@biomejs/biome", "esbuild"]
}