Files
pi-config/extensions/pi-subagents/package.json

56 lines
1.5 KiB
JSON

{
"name": "@tintinweb/pi-subagents",
"version": "0.7.1",
"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"
},
"keywords": [
"pi-package",
"pi",
"pi-extension",
"subagent",
"agent",
"autonomous"
],
"peerDependencies": {
"@mariozechner/pi-ai": ">=0.70.5",
"@mariozechner/pi-coding-agent": ">=0.70.5",
"@mariozechner/pi-tui": ">=0.70.5"
},
"dependencies": {
"@sinclair/typebox": "^0.34.49",
"croner": "^10.0.1",
"nanoid": "^5.0.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/ test/",
"lint:fix": "biome check --fix src/ test/"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/node": "^25.5.0",
"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"
}
}