@director.run/cli 0.0.16

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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/dist/cli.js +582 -0
  3. package/package.json +37 -0
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@director.run/cli",
3
+ "type": "module",
4
+ "version": "0.0.16",
5
+ "files": ["dist", "README.md"],
6
+ "bin": {
7
+ "director": "./dist/cli.js"
8
+ },
9
+ "scripts": {
10
+ "lint": "biome check .",
11
+ "format": "biome format --write .",
12
+ "clean": "rm -rf .turbo dist/*",
13
+ "test": "bun run vitest --fileParallelism=false",
14
+ "cli": "NODE_ENV=development bun run bin/cli.ts",
15
+ "typecheck": "tsc --noEmit",
16
+ "build": "bun build --production --target=node bin/cli.ts --outdir dist",
17
+ "release": "bun publish --access public --omit=peer",
18
+ "prepare": "bun run build",
19
+ "dev": "bun --watch bin/cli.ts"
20
+ },
21
+ "dependencies": {
22
+ "@inquirer/prompts": "^7.5.2"
23
+ },
24
+ "peerDependencies": {
25
+ "typescript": "^5"
26
+ },
27
+ "devDependencies": {
28
+ "type-fest": "^4.40.0",
29
+ "@director.run/gateway": "0.0.1",
30
+ "@director.run/mcp": "0.0.1",
31
+ "@director.run/utilities": "0.0.1",
32
+ "chalk": "^5.4.1",
33
+ "cli-table3": "^0.6.5",
34
+ "commander": "^13.1.0",
35
+ "superjson": "^2.2.2"
36
+ }
37
+ }