UNPKG

@feedinbox/cli

Version:

CLI tool for installing FeedInbox components into your project

66 lines 1.48 kB
{ "name": "@feedinbox/cli", "version": "1.0.0", "description": "CLI tool for installing FeedInbox components into your project", "bin": { "feedinbox": "dist/cli.js" }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "scripts": { "dev": "tsup --watch", "build": "tsup", "lint": "eslint . --ext .ts", "type-check": "tsc --noEmit", "prepublishOnly": "pnpm run build" }, "keywords": [ "feedinbox", "cli", "components", "installer", "react", "tailwind", "shadcn" ], "author": "FeedInbox Team", "license": "MIT", "files": [ "dist", "templates", "README.md" ], "dependencies": { "commander": "^12.1.0", "inquirer": "^10.2.2", "chalk": "^5.3.0", "fs-extra": "^11.2.0", "node-fetch": "^3.3.2" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^9.0.7", "@types/node": "^22.5.5", "@typescript-eslint/eslint-plugin": "^8.8.1", "@typescript-eslint/parser": "^8.8.1", "eslint": "^9.11.1", "tsup": "^8.3.5", "typescript": "^5.8.3" }, "engines": { "node": ">=16" }, "repository": { "type": "git", "url": "https://github.com/feedinbox/feedinbox.git", "directory": "packages/feedinbox-cli" }, "homepage": "https://feedinbox.com", "bugs": { "url": "https://github.com/feedinbox/feedinbox/issues" }, "publishConfig": { "access": "public" } }