-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "@learnrudi/cli",
"version": "1.10.12",
"description": "RUDI CLI - Install and manage MCP stacks, runtimes, and AI agents",
"type": "module",
"main": "dist/index.cjs",
"bin": {
"rudi": "dist/index.cjs"
},
"files": [
"dist",
"scripts",
"README.md"
],
"scripts": {
"start": "node src/index.js",
"prebuild": "node scripts/generate-manifest.js",
"build": "esbuild src/index.js --bundle --platform=node --format=cjs --outfile=dist/index.cjs --define:__RUDI_CLI_VERSION__=$(node -p \"JSON.stringify(require('./package.json').version)\") --external:better-sqlite3 --external:@lydell/node-pty && cp src/router-mcp.js dist/router-mcp.js && cp src/spawn-mcp.js dist/spawn-mcp.js && cp src/packages-manifest.json dist/packages-manifest.json && mkdir -p dist/templates && cp -R templates/run-groups dist/templates/",
"prepublishOnly": "npm run build",
"test": "node --test src/__tests__/unit/*.test.js src/__tests__/e2e/*.test.js"
},
"dependencies": {
"@learnrudi/core": "workspace:*",
"@learnrudi/db": "workspace:*",
"@learnrudi/embeddings": "workspace:*",
"@learnrudi/env": "workspace:*",
"@learnrudi/manifest": "workspace:*",
"@learnrudi/mcp": "workspace:*",
"@learnrudi/registry-client": "workspace:*",
"@learnrudi/runner": "workspace:*",
"@learnrudi/secrets": "workspace:*",
"@learnrudi/utils": "workspace:*",
"@lydell/node-pty": "^1.1.0",
"better-sqlite3": "^12.5.0",
"ws": "^8.18.0"
},
"devDependencies": {
"esbuild": "^0.27.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"claude",
"codex",
"gemini",
"rudi",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/learn-rudi/cli.git"
},
"homepage": "https://learnrudi.com",
"publishConfig": {
"access": "public"
},
"license": "MIT"
}