Files

76 lines
2.1 KiB
JSON

{
"name": "@tintinweb/pi-subagents",
"version": "0.18.0",
"description": "A pi extension extension that brings smart Claude Code-style autonomous sub-agents to pi.",
"author": "tintinweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tintinweb/pi-subagents.git"
},
"homepage": "https://github.com/tintinweb/pi-subagents#readme",
"bugs": {
"url": "https://github.com/tintinweb/pi-subagents/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"subagent",
"agent",
"autonomous"
],
"peerDependencies": {
"@earendil-works/pi-ai": ">=0.81.0",
"@earendil-works/pi-coding-agent": ">=0.81.0",
"@earendil-works/pi-tui": ">=0.81.0"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
}
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"croner": "^10.0.1",
"nanoid": "^5.1.16"
},
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run e2e --reporter=verbose",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --fix src/ test/",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@earendil-works/pi-ai": "0.84.2",
"@earendil-works/pi-coding-agent": "0.84.2",
"@earendil-works/pi-tui": "0.84.2",
"@types/node": "^25.5.0",
"@vitest/coverage-istanbul": "^4.1.10",
"typescript": "^6.0.0",
"vitest": "^4.0.18"
},
"pi": {
"extensions": [
"./src/index.ts"
],
"video": "https://github.com/tintinweb/pi-subagents/raw/master/media/demo.mp4",
"image": "https://github.com/tintinweb/pi-subagents/raw/master/media/screenshot.png"
}
}