mirror of
https://github.com/wassname/pi-plan.git
synced 2026-09-26 14:10:23 +08:00
Loading a second pi-subagents copy forced an "extensions": [] filter in user settings. pi-goals now only imports its event helper; tests run against 0.70.1, which ships its own types, so the local .d.ts shim is removed. Co-Authored-By: Claude <288921227+claudypoo@users.noreply.github.com>
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "@wassname2/pi-goals",
|
|
"version": "0.2.2",
|
|
"description": "One agent, one approved goals file, a scheduled loop that re-sends your loop statement and goals, and an optional read-only judge.",
|
|
"author": "wassname",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/wassname/pi-goals.git"
|
|
},
|
|
"keywords": [
|
|
"pi-package",
|
|
"pi",
|
|
"pi-extension",
|
|
"plan",
|
|
"goal",
|
|
"proof",
|
|
"uat",
|
|
"evidence",
|
|
"judge"
|
|
],
|
|
"peerDependencies": {
|
|
"@earendil-works/pi-coding-agent": ">=0.85.1 <1.0.0",
|
|
"typebox": "*"
|
|
},
|
|
"dependencies": {
|
|
"@jl1990/pi-scheduler": "https://registry.npmjs.org/@jl1990/pi-scheduler/-/pi-scheduler-0.5.0.tgz",
|
|
"pi-subagents": "0.70.1"
|
|
},
|
|
"bundleDependencies": [
|
|
"@jl1990/pi-scheduler"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run lint && npm run typecheck && npm run test",
|
|
"test": "vitest run --dir test",
|
|
"test:watch": "vitest --dir test",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check src/ test/",
|
|
"lint:fix": "biome check --fix src/ test/"
|
|
},
|
|
"devDependencies": {
|
|
"@earendil-works/pi-coding-agent": "0.85.1",
|
|
"@types/node": "^20.0.0",
|
|
"typebox": "^1.3.7",
|
|
"typescript": "^5.0.0",
|
|
"@biomejs/biome": "^2.4.8",
|
|
"vitest": "^4.0.18"
|
|
},
|
|
"pi": {
|
|
"extensions": [
|
|
"./src/index.ts",
|
|
"./node_modules/@jl1990/pi-scheduler/extensions/scheduler/index.ts"
|
|
],
|
|
"image": "https://cdn.jsdelivr.net/gh/wassname/pi-goals@main/media/screenshot.png"
|
|
}
|
|
}
|