UNPKG

@ideascol/cli-maker

Version:
51 lines (50 loc) 1.29 kB
{ "name": "@ideascol/cli-maker", "version": "2.2.2", "description": "A simple library to help create CLIs", "main": "dist/index.js", "types": "dist/index.d.ts", "homepage": "https://github.com/ideascoldigital/cli-maker", "repository": { "type": "git", "url": "git+https://github.com/ideascoldigital/cli-maker.git" }, "bugs": { "url": "https://github.com/ideascoldigital/cli-maker/issues" }, "scripts": { "build": "tsc", "test": "bun test", "publish:provenance": "npm publish --provenance --access public", "prepublishOnly": "npm run build && npm test", "example": "bun run examples/index.js", "example:setup": "bun examples/index.js setup", "dev": "bun run src/bin/commands/index.ts", "example:chat": "bun examples/interactive-session.js chat", "example:stream": "bun examples/interactive-session.js stream-chat" }, "bin": { "cli-maker": "dist/bin/cli.js" }, "author": "Jairo Fernández", "license": "MIT", "files": [ "dist/**/*", "!src/tests/**/*" ], "publishConfig": { "access": "public" }, "devDependencies": { "@types/node": "^20.14.11", "typescript": "^5.5.3" }, "keywords": [ "cli", "command", "line", "interface", "maker", "simple-cli" ] }