2025-05-19 15:19:34 +00:00
|
|
|
{
|
2025-05-20 16:28:31 +00:00
|
|
|
"name": "@agentic/platform-cli",
|
2025-05-19 15:19:34 +00:00
|
|
|
"version": "0.0.1",
|
|
|
|
|
"description": "CLI for Agentic.",
|
|
|
|
|
"author": "Travis Fischer <travis@transitivebullsh.it>",
|
|
|
|
|
"license": "UNLICENSED",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/transitive-bullshit/agentic-platform.git",
|
|
|
|
|
"directory": "packages/cli"
|
|
|
|
|
},
|
|
|
|
|
"type": "module",
|
2025-05-26 18:28:18 +00:00
|
|
|
"source": "./src/cli.ts",
|
2025-05-19 15:19:34 +00:00
|
|
|
"bin": {
|
2025-05-26 18:28:18 +00:00
|
|
|
"agentic": "./dist/cli.js"
|
2025-05-19 15:19:34 +00:00
|
|
|
},
|
2025-05-20 16:28:31 +00:00
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
2025-05-19 15:19:34 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"test": "run-s test:*",
|
|
|
|
|
"test:lint": "eslint .",
|
2025-05-25 10:35:22 +00:00
|
|
|
"test:typecheck": "tsc --noEmit",
|
|
|
|
|
"test:unit": "vitest run"
|
2025-05-19 15:19:34 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-05-20 17:50:41 +00:00
|
|
|
"@agentic/platform-api-client": "workspace:*",
|
2025-05-21 19:14:46 +00:00
|
|
|
"@agentic/platform-core": "workspace:*",
|
2025-05-24 22:36:39 +00:00
|
|
|
"@agentic/platform-schemas": "workspace:*",
|
2025-05-26 17:35:19 +00:00
|
|
|
"@clack/prompts": "^0.11.0",
|
2025-05-22 17:19:04 +00:00
|
|
|
"@hono/node-server": "^1.14.1",
|
2025-05-19 15:19:34 +00:00
|
|
|
"commander": "^14.0.0",
|
|
|
|
|
"conf": "^13.1.0",
|
2025-05-22 17:19:04 +00:00
|
|
|
"dotenv": "catalog:",
|
|
|
|
|
"get-port": "^7.1.0",
|
|
|
|
|
"hono": "^4.7.9",
|
|
|
|
|
"open": "^10.1.2",
|
2025-05-19 15:19:34 +00:00
|
|
|
"ora": "^8.2.0",
|
|
|
|
|
"restore-cursor": "catalog:",
|
2025-05-26 18:23:16 +00:00
|
|
|
"semver": "^7.7.2",
|
2025-05-26 17:43:53 +00:00
|
|
|
"unconfig": "^7.3.2"
|
2025-05-19 15:19:34 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-05-26 10:22:23 +00:00
|
|
|
"@agentic/platform-fixtures": "workspace:*",
|
2025-05-21 12:18:39 +00:00
|
|
|
"@commander-js/extra-typings": "^14.0.0",
|
2025-05-26 18:23:16 +00:00
|
|
|
"@types/semver": "^7.7.0"
|
2025-05-19 15:19:34 +00:00
|
|
|
},
|
|
|
|
|
"publishConfig": {
|
|
|
|
|
"access": "public"
|
|
|
|
|
}
|
|
|
|
|
}
|