Files
ralph-vibe/package.json
2026-01-10 11:59:27 +00:00

25 lines
674 B
JSON

{
"name": "ralph-vibe",
"version": "0.1.0",
"description": "Generate Ralph Method project scaffolds with AI-powered research",
"type": "module",
"bin": {
"ralph-vibe": "./dist/index.js"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"dev": "tsup src/index.ts --format esm --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"keywords": ["cli", "ai", "claude", "vibe-coding", "ralph-method"],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}