-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.68 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.68 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
{
"name": "codex-auth-manage",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/with-default-proxy.mjs next dev",
"dev:desktop-web": "node scripts/with-default-proxy.mjs next dev --hostname 127.0.0.1 --port 3000",
"build": "node scripts/with-default-proxy.mjs next build",
"build:web": "node scripts/with-default-proxy.mjs next build",
"start": "node scripts/with-default-proxy.mjs next start --hostname 127.0.0.1 --port 3000",
"server": "node scripts/with-default-proxy.mjs next start --hostname 127.0.0.1 --port 3000",
"cli": "node scripts/with-default-proxy.mjs tsx src/cli/main.ts",
"tauri:dev": "node scripts/run-tauri-dev.mjs",
"prepare:tauri:frontend": "node scripts/prepare-tauri-frontend-resources.mjs",
"tauri:build:prep": "pnpm run build:web && pnpm run prepare:tauri:frontend",
"lint": "eslint",
"test": "vitest run",
"db:generate": "drizzle-kit generate",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.8.0",
"better-sqlite3": "^12.6.2",
"drizzle-orm": "^0.45.1",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"undici": "^7.22.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tauri-apps/cli": "^2.9.1",
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}