chatgpt-api/packages/cli/package.json

54 wiersze
1.4 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",
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 .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
2025-05-19 15:19:34 +00:00
},
"dependencies": {
"@agentic/platform": "workspace:*",
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 19:09:46 +00:00
"@agentic/platform-validators": "workspace:*",
"@clack/prompts": "catalog:",
"@hono/node-server": "catalog:",
"commander": "catalog:",
"conf": "catalog:",
2025-05-22 17:19:04 +00:00
"dotenv": "catalog:",
"get-port": "catalog:",
"hono": "catalog:",
"open": "catalog:",
"ora": "catalog:",
2025-05-19 15:19:34 +00:00
"restore-cursor": "catalog:",
"semver": "catalog:",
"unconfig": "catalog:"
2025-05-19 15:19:34 +00:00
},
"devDependencies": {
2025-05-26 10:22:23 +00:00
"@agentic/platform-fixtures": "workspace:*",
"@commander-js/extra-typings": "catalog:",
"@types/semver": "catalog:"
2025-05-19 15:19:34 +00:00
},
"publishConfig": {
"access": "public"
}
}