-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.77 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.77 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "cli-node-docker-atlas-lab",
"version": "0.36.0",
"description": "Self-contained Node.js CLI and Docker stack for Atlas Lab, a localhost-first self-hosted platform with optional AI and workbench layers.",
"license": "MIT",
"author": "d4v3-rm",
"type": "module",
"bin": {
"atlas-lab": "./bin/atlas-lab"
},
"scripts": {
"dev": "tsx ./src/bin/atlas-lab.ts",
"build": "tsup",
"verify": "npm run typecheck && npm run test && npm run build && npm run build:atlas-dashboard",
"set:version": "node ./scripts/set-version.mjs",
"dev:atlas-dashboard": "vite --config ./config/atlas-dashboard/vite.config.ts",
"build:atlas-dashboard": "tsc -p ./config/atlas-dashboard/tsconfig.json --noEmit && vite build --config ./config/atlas-dashboard/vite.config.ts",
"typecheck:atlas-dashboard": "tsc -p ./config/atlas-dashboard/tsconfig.json --noEmit",
"preview:atlas-dashboard": "vite preview --config ./config/atlas-dashboard/vite.config.ts",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --runInBand",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepack": "node ./scripts/clean-package-artifacts.mjs && npm run build",
"pack:local": "npm pack"
},
"files": [
".dockerignore",
"LICENSE",
"apps/atlas-dashboard",
"bin",
"CHANGELOG.md",
"config",
"dist",
"env",
"infra/docker",
"README.md"
],
"engines": {
"node": ">=20"
},
"keywords": [
"atlas-lab",
"self-hosted",
"self-hosted-lab",
"docker",
"docker-compose",
"localhost",
"local-ai",
"ai-llm",
"ai-image",
"ai-video",
"automation",
"caddy",
"comfyui",
"gitea",
"n8n",
"ollama",
"open-webui",
"invokeai",
"ltx-video",
"wan-2.1",
"code-server",
"workbench",
"typescript-cli",
"developer-platform"
],
"dependencies": {
"@ant-design/icons": "^6.1.0",
"antd": "^6.3.2",
"boxen": "^8.0.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.1",
"consola": "^3.4.2",
"dotenv": "^17.2.3",
"execa": "^9.6.0",
"find-up": "^8.0.0",
"got": "^14.6.1",
"i18next": "^25.8.18",
"listr2": "^9.0.4",
"log-symbols": "^7.0.1",
"p-wait-for": "^6.0.0",
"picocolors": "^1.1.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.8",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"zod": "^4.1.11"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.5.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"jest": "^29.7.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.4.6",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}