-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.43 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
{
"name": "aeroplane",
"version": "0.1.0",
"description": "Aeroplane is a self-hostable deployment control plane powered by Railpack, Docker, and Caddy.",
"type": "module",
"scripts": {
"dev": "concurrently -k -n api,web -c cyan,magenta \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite --host 0.0.0.0",
"download:framework-icons": "tsx scripts/download-framework-icons.ts --force",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "NODE_ENV=production node dist/server/index.js",
"publish:image": "docker buildx build --platform linux/amd64,linux/arm64 --build-arg AEROPLANE_COMMIT_SHA=$(git rev-parse HEAD) -t ghcr.io/xt42io/aeroplane:latest --push .",
"typecheck": "tsc --noEmit && tsc -p tsconfig.server.json --noEmit"
},
"keywords": [
"aeroplane",
"self-hosted",
"railpack",
"caddy"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.81",
"@ai-sdk/deepseek": "^2.0.35",
"@ai-sdk/google": "^3.0.80",
"@ai-sdk/groq": "^3.0.39",
"@ai-sdk/mistral": "^3.0.37",
"@ai-sdk/openai": "^3.0.68",
"@ai-sdk/openai-compatible": "^2.0.48",
"@ai-sdk/xai": "^3.0.93",
"@codemirror/autocomplete": "^6.20.2",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.0",
"@hono/node-server": "^2.0.3",
"@hugeicons/core-free-icons": "^4.1.4",
"@hugeicons/react": "^1.1.6",
"@lezer/highlight": "^1.2.3",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/react-router": "^1.170.10",
"@tanstack/react-router-devtools": "^1.167.0",
"@uiw/react-codemirror": "^4.25.10",
"ai": "^6.0.197",
"better-sqlite3": "^12.10.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.21",
"nanoid": "^5.1.11",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"recharts": "^3.10.1",
"tailwindcss": "^4.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tanstack/router-plugin": "^1.168.13",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.3",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"concurrently": "^9.2.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vite": "^8.0.13"
},
"optionalDependencies": {
"@emnapi/core": "1.10.0",
"@emnapi/runtime": "1.10.0"
}
}