-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "agentic-utilities",
"version": "0.1.0",
"description": "Personal Pi package for sharing and preserving Pi extensions, agent skills, prompts, and themes.",
"type": "module",
"license": "MIT",
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"agent-skills",
"agentic-utilities"
],
"files": [
"AGENTS.md",
"CHANGELOG.md",
"LICENSE",
"README.md",
"codex",
"docs",
"extensions",
"prompts",
"rules",
"scripts",
"skills",
"skills.sh.json",
"themes"
],
"pi": {
"extensions": [
"./extensions/*.ts",
"./extensions/*/index.ts"
],
"skills": [
"./skills/**/SKILL.md"
],
"prompts": [
"./prompts/*.prompt.md"
],
"themes": [
"./themes/*.json"
]
},
"scripts": {
"check": "bun run lint && bun scripts/validate-lockfile.mjs && bun run check:bws-tui && bun run typecheck && bun run test && bun run validate:plugins && bun scripts/validate-package-contents.mjs && bun run validate:skills && bun scripts/list-resources.mjs",
"list": "bun scripts/list-resources.mjs",
"check:bws-tui": "cargo fmt --manifest-path bws-tui/Cargo.toml -- --check && cargo test --manifest-path bws-tui/Cargo.toml && cargo clippy --manifest-path bws-tui/Cargo.toml -- -D warnings",
"validate:plugins": "bun scripts/validate-plugin-ports.mjs && bun scripts/validate-codex-plugins.mjs",
"install:bash-guard:global": "node scripts/install-bash-guard-global.mjs",
"new:extension": "node scripts/new-extension.mjs",
"new:skill": "node scripts/new-skill.mjs",
"pack:dry": "bun pm pack --dry-run",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome check --write .",
"prepare": "husky",
"test": "node extensions/autopilot/v2-smoke-test.mjs && node extensions/question/question-smoke-test.mjs && node extensions/conditional-hooks/smoke-test.mjs && node scripts/lib/frontmatter-test.mjs && node scripts/lib/bundle-refs-test.mjs && node scripts/cli-entrypoint-test.mjs && python3 skills/diataxis-docs-site/tests/test_create_site.py && bun test scripts/lib/package-links.test.mjs scripts/validate-lockfile.test.mjs scripts/sync-public.test.mjs && bun test skills/pr-review-queue/ && bun run test:herdr-fleet",
"test:herdr-fleet": "bun skills/herdr-fleet/scripts/resolve-project-key.mjs --self-test && bun skills/herdr-fleet/scripts/watch-fleet.mjs --self-test && bun skills/herdr-fleet/scripts/consume-events.mjs --self-test && bun test skills/herdr-fleet/skill-content.test.mjs skills/herdr-fleet/scripts/fleet-state.test.mjs skills/herdr-fleet/scripts/review-thread-gate.test.mjs",
"typecheck": "tsc --noEmit",
"validate:skills": "bun scripts/validate-agent-skills.mjs",
"sync:public": "bun scripts/sync-public.mjs",
"sync:public:check": "bun scripts/sync-public.mjs --check"
},
"peerDependencies": {
"@mariozechner/pi-ai": "*",
"@mariozechner/pi-coding-agent": "*",
"@mariozechner/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@mariozechner/jiti": "2.6.5",
"@mariozechner/pi-ai": "latest",
"@mariozechner/pi-coding-agent": "latest",
"@mariozechner/pi-tui": "latest",
"@types/node": "latest",
"@types/shell-quote": "^1.7.5",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"typebox": "latest",
"typescript": "latest",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,json,md,yml,yaml}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@juicesharp/rpiv-config": "^1.15.0",
"shell-quote": "^1.8.4"
},
"overrides": {
"protobufjs": ">=7.5.6"
}
}