3ed38d7e1e
Vitest with passWithNoTests keeps CI green before test files land in later phases. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
516 B
JSON
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"
|
|
}
|
|
}
|