This repository was archived by the owner on May 20, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.69 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
{
"name": "@capyup/pi-basic-tools",
"version": "0.10.0",
"description": "Capy Tools: capybara-flavoured productivity tools for pi, including repo_map, read_block, symbol_outline, apply_patch, exec_command, write_stdin, grouped basic-tool UI, recap, todo, auto-compact, command history, Codex fast mode, custom efforts, Codex goals, RTK bash compression, working messages, ask tools, fetch, Sourcegraph, and built-in search activation.",
"repository": {
"type": "git",
"url": "git+https://github.com/capyup/capy-tools.git"
},
"author": "capyup",
"license": "MIT",
"type": "module",
"keywords": [
"pi-package",
"pi",
"pi-extension",
"editing",
"search",
"capy-tools",
"capybara"
],
"files": [
"extensions/",
"scripts/",
"skills/",
"vendor/",
"docs/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "bun test",
"test:build": "bun build extensions/index.ts extensions/fetch.ts extensions/enable-builtin-search.ts extensions/repo-map.ts extensions/read-block.ts extensions/symbol-outline.ts extensions/apply-patch.ts extensions/terminal-session.ts extensions/ask-user.ts extensions/ask-question.ts extensions/ask-questionnaire.ts extensions/sourcegraph.ts extensions/recap.ts extensions/message-shape-diagnostic.ts extensions/auto-compact.ts extensions/codex-fast.ts extensions/capy-tools-config.ts extensions/capy-tools-settings.ts extensions/command-history.ts extensions/efforts/index.ts extensions/codex-goal/index.ts extensions/rtk/index.ts extensions/thinking-steps/index.ts extensions/todo/index.ts extensions/cat-whimsical/index.ts --target=node --external @earendil-works/pi-coding-agent --external @earendil-works/pi-ai --external @earendil-works/pi-tui --external @sinclair/typebox --outdir /tmp/pi-basic-tools-build",
"test:tui-capture": "python3 scripts/capture-pi-tui.py --expect 'Explored 3 targets' --expect Outline --expect Read --expect Search --expect-tools-block Outline --expect-tools-block Read --expect-tools-block Search --forbid 'grep grep'",
"test:tui-capture:current": "python3 scripts/capture-pi-tui.py --current-pi-settings --basic-leak-canary",
"check": "npm run test:build && npm test"
},
"pi": {
"extensions": [
"./extensions/index.ts"
],
"skills": [
"./skills"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"@sinclair/typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-coding-agent": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@sinclair/typebox": "^0.34.49"
}
}