-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.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
{
"name": "@asmostans/daeva",
"version": "0.2.6",
"description": "Daeva \u2014 local GPU pod orchestrator for AI workloads",
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"daeva": "dist/src/cli.js",
"daeva-mcp": "dist/src/mcp-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asmolebot/daeva.git"
},
"homepage": "https://asmo.bot",
"bugs": {
"url": "https://github.com/asmolebot/daeva/issues"
},
"files": [
"dist/src",
"dist/examples",
"dist/manifests",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/src/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"keywords": [
"daeva",
"orchestrator",
"gpu",
"pod",
"ai",
"mcp",
"fastify",
"queue",
"comfyui",
"whisper",
"ocr"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@fastify/multipart": "^9.4.0",
"@fastify/rate-limit": "^10.3.0",
"better-sqlite3": "^12.8.0",
"fastify": "^5.2.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"publishConfig": {
"access": "public"
}
}