-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.82 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "pi-goals",
"version": "0.5.1",
"description": "Persistent goal tracking for Pi with /tree-compatible state, budgets, reusable prompts, and churn monitoring.",
"main": ".pi/extensions/goal/index.ts",
"files": [
".pi/extensions/goal/*.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"gates:quality": "sentrux gate .pi/extensions/goal && sentrux check .pi/extensions/goal && npm run gates:deslop && tsc --noEmit --target ES2022 --module ESNext --moduleResolution node --ignoreDeprecations 6.0 --types node --strict --skipLibCheck .pi/extensions/goal/*.ts && pi --offline --no-session --no-tools -e .pi/extensions/goal/index.ts --list-models >/tmp/pi-goal-quality-load.txt",
"gates:deslop": "npx --yes d3sl0p@0.1.0 typescript --report-min error .pi/extensions/goal",
"scans:deslop": "npx --yes d3sl0p@0.1.0 typescript --fail-on none --report-min lead .pi/extensions/goal",
"sentrux:baseline": "bash ${HOME}/.codex/skills/pi-extension-dev/scripts/sentrux-save-baseline.sh .pi/extensions/goal"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transcendr/pi-goals.git"
},
"keywords": [
"pi",
"pi-extension",
"pi-package",
"agent",
"goal",
"coding-agent"
],
"author": "Bryan Price-McConnahea (@slopwareindy // withbryan.work)",
"license": "MIT",
"type": "commonjs",
"pi": {
"extensions": [
".pi/extensions/goal/index.ts"
]
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/transcendr/pi-goals/issues"
},
"homepage": "https://github.com/transcendr/pi-goals#readme",
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@types/node": "^25.6.2",
"typebox": "^1.1.38",
"typescript": "^6.0.3"
}
}