Files
grayhook 3ed38d7e1e Phase 0: add npm scripts — typecheck, test, and build entry points.
Vitest with passWithNoTests keeps CI green before test files land in later phases.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-17 09:54:57 +07:00

24 lines
516 B
JSON

{
"name": "pi-skill-reinject",
"version": "0.0.0",
"private": true,
"description": "Pi Coding Agent extension: re-inject skills after auto compaction",
"type": "module",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"build": "npm run typecheck"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.79.6",
"typescript": "^5",
"vitest": "^3"
}
}