@ideascol/cli-maker
Version:
A simple library to help create CLIs
43 lines • 1.04 kB
JSON
{
"name": "@ideascol/cli-maker",
"version": "1.7.0",
"description": "A simple library to help create CLIs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/ideascoldigital/cli-maker",
"bugs": {
"url": "https://github.com/ideascoldigital/cli-maker/issues"
},
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build:test && find dist/tests -name '*.test.js' -exec node {} \\;",
"prepublishOnly": "npm run build",
"example": "npm run build && node examples/index.js",
"dev": "npm run build && node dist/bin/cli.js"
},
"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"
]
}