Files
pi-map/package.json
alex 6f13c66dae fix: remove tree-sitter-go to resolve peer dependency conflict
- tree-sitter-go@0.23.4 peer depends on tree-sitter@^0.21.1
- Conflicts with tree-sitter@0.22.4 used by tree-sitter-python
- Go AST already falls back to generic export/deps extraction
- Add .npmrc with legacy-peer-deps=true as safety net
- npm install --omit=dev now works cleanly
2026-06-10 16:04:33 +02:00

53 lines
1.1 KiB
JSON

{
"name": "pi-project-map",
"version": "0.1.0",
"description": "Pi skill for hierarchical project analysis — generates and maintains .pi-map.md files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"project-map": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"pi",
"skill",
"project-analysis",
"code-intelligence",
"agent-context"
],
"author": "",
"license": "MIT",
"pi": {
"extensions": [
"./pi-extension.ts"
],
"skills": [
"./SKILL.md"
]
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsx": "^4.22.4",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"dependencies": {
"ignore": "^5.3.0",
"openai": "^6.42.0",
"p-limit": "^7.3.0",
"picocolors": "^1.1.1",
"tree-sitter": "^0.22.4",
"tree-sitter-python": "^0.23.6",
"tree-sitter-typescript": "^0.23.2"
}
}