-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
{
"name": "pi-compass",
"version": "0.2.1",
"description": "A Pi extension that generates structured codebase maps and interactive code tours for agent onboarding.",
"type": "module",
"license": "MIT",
"author": "Matt Devy",
"repository": {
"type": "git",
"url": "https://github.com/MattDevy/pi-extensions.git",
"directory": "packages/pi-compass"
},
"homepage": "https://github.com/MattDevy/pi-extensions/tree/main/packages/pi-compass#readme",
"bugs": {
"url": "https://github.com/MattDevy/pi-extensions/issues"
},
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"codebase-onboarding",
"codemap",
"code-tour",
"ai",
"llm",
"ai-agent",
"coding-assistant",
"developer-tools"
],
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src",
"!src/**/*.test.ts",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"pi": {
"extensions": [
"dist/index.js"
]
},
"scripts": {
"clean": "rm -rf dist tsconfig.build.tsbuildinfo",
"build": "npm run clean && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint src/",
"check": "vitest run && eslint src/ && tsc --noEmit",
"prepublishOnly": "npm run build && npm run check",
"prepack": "test -d dist || { echo 'Error: dist/ missing. Run npm run build first.' && exit 1; }"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@sinclair/typebox": "^0.34.0"
},
"devDependencies": {
"@types/node": "^25.7.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.3.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}