UNPKG

rgen-cli

Version:

A developer CLI for initializing React projects, managing utilities, and scaffolding components, hooks, pages, layouts, routes, and contexts quickly.

95 lines (94 loc) 2.35 kB
{ "name": "rgen-cli", "description": "A developer CLI for initializing React projects, managing utilities, and scaffolding components, hooks, pages, layouts, routes, and contexts quickly.", "version": "0.1.1", "author": "Sam Badiei", "bin": { "rgen-cli": "./bin/run.js" }, "bugs": "https://github.com/mrsambadiei/rgen-cli/issues", "dependencies": { "@google/genai": "^1.14.0", "@oclif/core": "^4", "@oclif/plugin-help": "^6", "@oclif/plugin-plugins": "^5", "chalk": "^5.5.0", "dotenv": "^17.2.1", "inquirer": "^12.9.2", "jsonc-parser": "^3.3.1" }, "devDependencies": { "@eslint/compat": "^1", "@oclif/prettier-config": "^0.2.1", "@oclif/test": "^4", "@types/chai": "^4", "@types/mocha": "^10", "@types/node": "^18", "chai": "^4", "eslint": "^9", "eslint-config-oclif": "^6", "eslint-config-prettier": "^10", "mocha": "^10", "oclif": "^4", "shx": "^0.3.3", "ts-node": "^10", "typescript": "^5" }, "engines": { "node": ">=18.0.0" }, "files": [ "./bin", "./dist", "./oclif.manifest.json" ], "homepage": "https://github.com/mrsambadiei/rgen-cli", "keywords": [ "oclif", "react", "cli", "generator", "scaffold", "codegen", "react-hooks", "react-context", "react-components", "react-layout", "react-pages", "react-routes", "typescript", "automation", "developer-tool", "Gemini", "ai" ], "license": "MIT", "main": "dist/index.js", "type": "module", "oclif": { "bin": "rgen-cli", "dirname": "rgen-cli", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ], "topicSeparator": " ", "topics": { "hello": { "description": "Say hello to the world and others" } } }, "repository": "mrsambadiei/rgen-cli", "scripts": { "build": "shx rm -rf dist && tsc -b", "lint": "eslint", "postpack": "shx rm -f oclif.manifest.json", "posttest": "npm run lint", "prepack": "oclif manifest", "test": "mocha --forbid-only \"test/**/*.test.ts\"", "version": "oclif readme && git add README.md" }, "types": "dist/index.d.ts" }