- Add `tpm collection info <collection>` command to list all tools in a collection - Update `run` command examples to show workflow of listing tools first - Fix unsandbox healthCheck tool to use /cluster endpoint instead of /health - Update create-basic-tools template with correct tpmjs field format docs - Change default category from 'ai-ml' to 'utilities' in generator Published: - @tpmjs/cli@0.1.5 - @tpmjs/create-basic-tools@1.0.7 - @tpmjs/tools-unsandbox@0.1.3
43 lines
939 B
JSON
43 lines
939 B
JSON
{
|
|
"name": "@tpmjs/create-basic-tools",
|
|
"version": "1.0.7",
|
|
"description": "CLI generator for scaffolding production-ready TPMJS tool packages",
|
|
"type": "module",
|
|
"bin": {
|
|
"create-basic-tools": "./dist/index.js"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"tpmjs",
|
|
"ai-sdk",
|
|
"generator",
|
|
"cli",
|
|
"scaffold",
|
|
"boilerplate"
|
|
],
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.11.0",
|
|
"commander": "^14.0.2",
|
|
"picocolors": "^1.1.1",
|
|
"validate-npm-package-name": "^7.0.2",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tpmjs/tsconfig": "workspace:*",
|
|
"@tpmjs/types": "workspace:*",
|
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
"tsup": "^8.5.1",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"templates",
|
|
"README.md"
|
|
]
|
|
}
|