@director.run/cli 0.0.7 → 0.0.11
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.
Potentially problematic release.
This version of @director.run/cli might be problematic. Click here for more details.
- package/README.md +3 -34
- package/dist/cli.js +283 -237
- package/package.json +9 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@director.run/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.11",
|
|
5
5
|
"files": ["dist", "README.md"],
|
|
6
6
|
"bin": {
|
|
7
7
|
"director": "./dist/cli.js"
|
|
@@ -11,22 +11,24 @@
|
|
|
11
11
|
"format": "biome format --write .",
|
|
12
12
|
"clean": "rm -rf .turbo dist/*",
|
|
13
13
|
"test": "bun run vitest --fileParallelism=false",
|
|
14
|
-
"cli": "bun run bin/cli.ts",
|
|
14
|
+
"cli": "NODE_ENV=development bun run bin/cli.ts",
|
|
15
15
|
"typecheck": "tsc --noEmit",
|
|
16
16
|
"build": "bun build --production --target=node bin/cli.ts --outdir dist",
|
|
17
17
|
"release": "bun publish --access public --omit=peer",
|
|
18
|
-
"prepare": "bun run build"
|
|
18
|
+
"prepare": "bun run build",
|
|
19
|
+
"dev": "bun --watch bin/cli.ts"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@inquirer/prompts": "^7.5.2"
|
|
19
23
|
},
|
|
20
|
-
"dependencies": {},
|
|
21
24
|
"peerDependencies": {
|
|
22
25
|
"typescript": "^5"
|
|
23
26
|
},
|
|
24
27
|
"devDependencies": {
|
|
25
28
|
"type-fest": "^4.40.0",
|
|
26
|
-
"@director.run/
|
|
27
|
-
"@director.run/config": "0.0.1",
|
|
28
|
-
"@director.run/db": "0.0.1",
|
|
29
|
+
"@director.run/gateway": "0.0.1",
|
|
29
30
|
"@director.run/mcp": "0.0.1",
|
|
31
|
+
"@director.run/utilities": "0.0.1",
|
|
30
32
|
"chalk": "^5.4.1",
|
|
31
33
|
"cli-table3": "^0.6.5",
|
|
32
34
|
"commander": "^13.1.0",
|