Initial Ralph scaffold for ralph-vibe

This commit is contained in:
Debian
2026-01-10 11:59:27 +00:00
commit 688cfe57ed
9 changed files with 3469 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"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"
}
}