openpkg-cli
Version:
OpenAPI-like specification generator for TypeScript packages
41 lines (40 loc) • 990 B
JSON
{
"name": "openpkg-cli",
"version": "0.2.1",
"description": "OpenAPI-like specification generator for TypeScript packages",
"keywords": ["typescript", "cli", "documentation", "openpkg", "package-analysis", "openapi"],
"homepage": "https://github.com/openpkg/openpkg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/openpkg/openpkg.git",
"directory": "packages/cli"
},
"license": "MIT",
"author": "Ryan Waits",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"openpkg": "./dist/cli.js"
},
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"cli": "bun run src/cli.ts"
},
"files": [
"dist"
],
"dependencies": {
"@inquirer/prompts": "^7.8.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"openpkg-sdk": "^0.2.0",
"ora": "^8.2.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"bunup": "latest"
}
}