-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.02 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
{
"name": "deploy.local",
"version": "0.0.1",
"bin": {
"deploy": "./bin/deploy.js"
},
"type": "module",
"scripts": {
"server": "tsx server/index.ts",
"client": "vite",
"dev": "concurrently \"pnpm run server\" \"pnpm run client\" --names \"server,client\" --prefix-colors \"blue,magenta\"",
"build": "react-flight-router build && node scripts/build-server-extras.mjs",
"start": "node dist/supervisor.js",
"start:single": "node dist/server.js",
"preview": "concurrently \"pnpm run server\" \"vite preview\" --names \"server,preview\" --prefix-colors \"blue,magenta\"",
"lint": "oxlint .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test": "node --test server/**/*.test.ts",
"typecheck": "tsc --noEmit",
"dev:docs": "vite --config vite.docs.config.ts",
"build:docs": "vite build --config vite.docs.config.ts",
"preview:docs": "vite preview --config vite.docs.config.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"build:cli": "node scripts/build-cli.mjs",
"service:install": "node scripts/service.mjs install",
"service:restart": "node scripts/service.mjs restart",
"service:uninstall": "node scripts/service.mjs uninstall",
"service:status": "node scripts/service.mjs status",
"menubar:build": "node scripts/menubar.mjs build",
"menubar:install": "node scripts/menubar.mjs install",
"menubar:uninstall": "node scripts/menubar.mjs uninstall",
"release": "node scripts/release.mjs",
"prepare": "husky"
},
"dependencies": {
"@deploy.local/mdns": "workspace:*",
"@hono/node-server": "^2.0.3",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"better-sqlite3": "^12.10.0",
"busboy": "^1.6.0",
"croner": "^10.0.1",
"cronstrue": "^3.14.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.21",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-flight-router": "0.10.0",
"react-server-dom-webpack": "^19.2.6",
"vite": "^8.0.14",
"ws": "^8.20.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@types/better-sqlite3": "^7.6.13",
"@types/busboy": "^1.5.4",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "6.0.2",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"postject": "1.0.0-alpha.6",
"react-router": "^7.15.1",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=26.1.0 <27"
},
"volta": {
"node": "26.1.0"
},
"packageManager": "pnpm@11.1.3"
}