chore: add CLI command to package.json files

pull/728/head
Steve^ 2025-10-01 08:49:54 -06:00
rodzic 164531be13
commit c5b509c2aa
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -18,6 +18,7 @@
"docs": "turbo run docs",
"clean": "turbo clean",
"fix": "run-s fix:*",
"cli": "cd ./packages/cli && pnpm run cli",
"fix:format": "prettier --write \"**/*.{js,ts,tsx}\"",
"test": "turbo test --concurrency=32",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",

Wyświetl plik

@ -24,7 +24,8 @@
"build": "tsup",
"clean": "del dist",
"test": "run-s test:*",
"test:typecheck": "tsc --noEmit"
"test:typecheck": "tsc --noEmit",
"cli": "AGENTIC_API_BASE_URL=\"http://localhost:3001\" tsx ./src/cli.ts"
},
"dependencies": {
"@agentic/platform": "workspace:*",