@director.run/cli 0.0.50 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +410 -265
- package/package.json +12 -7
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@director.run/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0
|
|
5
|
-
"files": ["dist", "README.md"],
|
|
4
|
+
"version": "0.1.0",
|
|
5
|
+
"files": ["dist", "README.md", "package.json"],
|
|
6
6
|
"bin": {
|
|
7
7
|
"director": "./dist/cli.js"
|
|
8
8
|
},
|
|
@@ -14,15 +14,19 @@
|
|
|
14
14
|
},
|
|
15
15
|
"description": "The easiest way to manage and deploy MCP servers",
|
|
16
16
|
"homepage": "https://director.run",
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
17
20
|
"scripts": {
|
|
18
21
|
"lint": "biome check .",
|
|
19
22
|
"format": "biome format --write .",
|
|
20
23
|
"clean": "rm -rf .turbo dist/*",
|
|
21
24
|
"test": "bun run vitest --fileParallelism=false",
|
|
22
25
|
"cli": "NODE_ENV=development bun run bin/cli.ts",
|
|
26
|
+
"cli:dev": "NODE_ENV=development bun --watch bin/cli.ts",
|
|
23
27
|
"typecheck": "tsc --noEmit",
|
|
24
28
|
"build": "bun build --production --target=node bin/cli.ts --outdir dist",
|
|
25
|
-
"release": "
|
|
29
|
+
"release": "changeset publish",
|
|
26
30
|
"prepare": "bun run build",
|
|
27
31
|
"dev": "bun --watch bin/cli.ts"
|
|
28
32
|
},
|
|
@@ -30,9 +34,9 @@
|
|
|
30
34
|
"typescript": "^5"
|
|
31
35
|
},
|
|
32
36
|
"devDependencies": {
|
|
33
|
-
"@director.run/gateway": "
|
|
34
|
-
"@director.run/mcp": "
|
|
35
|
-
"@director.run/utilities": "
|
|
37
|
+
"@director.run/gateway": "workspace:*",
|
|
38
|
+
"@director.run/mcp": "workspace:*",
|
|
39
|
+
"@director.run/utilities": "workspace:*",
|
|
36
40
|
"@inquirer/prompts": "^7.5.2",
|
|
37
41
|
"@types/update-notifier": "^6.0.8",
|
|
38
42
|
"boxen": "^8.0.1",
|
|
@@ -44,6 +48,7 @@
|
|
|
44
48
|
"type-fest": "^4.40.0",
|
|
45
49
|
"update-notifier": "^7.3.1",
|
|
46
50
|
"@segment/analytics-node": "^2.3.0",
|
|
47
|
-
"node-machine-id": "^1.1.12"
|
|
51
|
+
"node-machine-id": "^1.1.12",
|
|
52
|
+
"zx": "^8.8.0"
|
|
48
53
|
}
|
|
49
54
|
}
|