pi-tdd-cycle/package.json

32 lines
654 B
JSON

{
"name": "pi-tdd-cycle",
"version": "0.1.0",
"description": "Pi extension that enforces the red-green-refactor TDD cycle",
"type": "module",
"private": true,
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"pi-package",
"tdd",
"red-green-refactor",
"extension"
],
"pi": {
"extensions": [
"./src/index.ts"
]
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "latest",
"@earendil-works/pi-tui": "latest",
"@types/node": "latest",
"typebox": "latest",
"typescript": "latest",
"vitest": "latest"
}
}