-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.73 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
{
"name": "pi-cymbal",
"version": "0.5.3",
"description": "Pi extension exposing Cymbal as an agent-native code navigation layer.",
"type": "module",
"license": "MIT",
"keywords": [
"pi-package",
"pi",
"pi-coding-agent",
"cymbal",
"code-navigation",
"code-search",
"agent-tools"
],
"pi": {
"extensions": [
"./dist/index.ts"
],
"image": "https://raw.githubusercontent.com/raphapr/pi-cymbal/main/assets/pi-cymbal-gallery.png"
},
"files": [
"dist/",
"src/",
"assets/",
"README.md",
"AGENTS.md",
"tsconfig.json"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.mjs",
"build": "esbuild src/index.ts --bundle --format=esm --platform=node --external:@earendil-works/* --external:typebox --outfile=dist/index.ts",
"prepack": "npm run build",
"validate": "npm run typecheck && npm test && npm pack --dry-run"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "0.75.5",
"@earendil-works/pi-coding-agent": "0.75.5",
"@earendil-works/pi-tui": "0.75.5",
"@types/node": "^24.0.0",
"esbuild": "^0.28.1",
"tsx": "^4.20.0",
"typebox": "^1.1.38",
"typescript": "^5.9.3"
},
"author": "Raphael Ribeiro",
"repository": {
"type": "git",
"url": "git+https://github.com/raphapr/pi-cymbal.git"
},
"homepage": "https://github.com/raphapr/pi-cymbal#readme",
"bugs": {
"url": "https://github.com/raphapr/pi-cymbal/issues"
},
"engines": {
"node": ">=22.19.0"
},
"publishConfig": {
"access": "public"
}
}