-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "pi-codegraphcontext",
"version": "0.2.0",
"description": "Pi coding-agent extension for CodeGraphContext (CGC): index lifecycle gate, freshness sync, agent routing guidance, status surfaces, and CLI-gap tools wrapping the cgc binary.",
"type": "module",
"keywords": [
"pi-package"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelbahat/pi-codegraphcontext.git"
},
"exports": {
".": "./extensions/index.ts"
},
"types": "./extensions/index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "biome lint .",
"format": "biome check --write .",
"format:check": "biome check .",
"test": "bun test"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
},
"devDependencies": {
"@biomejs/biome": "^2.5.12",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@earendil-works/pi-coding-agent": "^0.85.1",
"@types/bun": "^1.4.1",
"github-actionlint": "^1.7.12",
"typebox": "^1.0.9",
"typescript": "^7.0.2"
},
"pi": {
"extensions": [
"./extensions"
]
},
"engines": {
"bun": ">=1.4"
}
}