chatgpt-api/packages/cli/package.json

55 wiersze
1.3 KiB
JSON
Czysty Zwykły widok Historia

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",
"source": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"bin": {
2025-05-20 16:28:31 +00:00
"agentic": "./dist/index.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 .",
"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-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",
2025-05-21 12:18:39 +00:00
"inquirer": "^9.2.15",
2025-05-22 17:19:04 +00:00
"open": "^10.1.2",
2025-05-19 15:19:34 +00:00
"ora": "^8.2.0",
"restore-cursor": "catalog:",
2025-05-24 22:36:39 +00:00
"unconfig": "^7.3.2",
2025-05-19 15:19:34 +00:00
"zod": "catalog:"
},
"devDependencies": {
2025-05-21 12:18:39 +00:00
"@commander-js/extra-typings": "^14.0.0",
"@types/inquirer": "^9.0.7"
2025-05-19 15:19:34 +00:00
},
"publishConfig": {
"access": "public"
}
}