Reference implementation for the Phoenix Architecture. Work in progress. aicoding.leaflet.pub/
ai coding crazy
at main 21 lines 466 B view raw
1{ 2 "name": "phoenix-vcs", 3 "version": "0.1.0", 4 "description": "Regenerative version control system — causal compiler for intent", 5 "type": "module", 6 "main": "dist/index.js", 7 "types": "dist/index.d.ts", 8 "bin": { 9 "phoenix": "dist/cli.js" 10 }, 11 "scripts": { 12 "build": "tsc", 13 "test": "vitest run", 14 "test:watch": "vitest", 15 "phoenix": "node dist/cli.js" 16 }, 17 "devDependencies": { 18 "typescript": "^5.4.0", 19 "vitest": "^2.0.0" 20 } 21}