@owlburtoe/pi-cc-tools 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +144 -0
- package/config/config.example.json +18 -0
- package/extensions/index.ts +4485 -0
- package/extensions/spinner.ts +818 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@owlburtoe/pi-cc-tools",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Claude Code-style tool rows for pi with Ctrl+O image previews and consistent built-in, MCP, and custom tool rendering",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"pi-extension",
|
|
8
|
+
"claude-code",
|
|
9
|
+
"pi",
|
|
10
|
+
"tool-renderer",
|
|
11
|
+
"mcp",
|
|
12
|
+
"terminal-images",
|
|
13
|
+
"shiki",
|
|
14
|
+
"diff"
|
|
15
|
+
],
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "owlburtoe",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://forgejo.owlburtoe.dev/owlburtoe/pi-claude-style-tools.git"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://forgejo.owlburtoe.dev/owlburtoe/pi-claude-style-tools",
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://forgejo.owlburtoe.dev/owlburtoe/pi-claude-style-tools/issues"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"extensions/index.ts",
|
|
28
|
+
"extensions/spinner.ts",
|
|
29
|
+
"config/config.example.json",
|
|
30
|
+
"README.md"
|
|
31
|
+
],
|
|
32
|
+
"scripts": {
|
|
33
|
+
"bench:tools": "bun scripts/benchmark-tools.ts"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@shikijs/cli": "^4.0.2",
|
|
37
|
+
"diff": "^7.0.0"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
41
|
+
"@earendil-works/pi-tui": "*"
|
|
42
|
+
},
|
|
43
|
+
"pi": {
|
|
44
|
+
"extensions": [
|
|
45
|
+
"./extensions/index.ts",
|
|
46
|
+
"./extensions/spinner.ts"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/diff": "^7.0.2",
|
|
51
|
+
"@types/node": "^25.6.0",
|
|
52
|
+
"typescript": "^6.0.2",
|
|
53
|
+
"@earendil-works/pi-coding-agent": "latest",
|
|
54
|
+
"@earendil-works/pi-tui": "latest"
|
|
55
|
+
}
|
|
56
|
+
}
|