{
	"name": "@lpb-work/pi-subagents",
	"version": "1.1.3",
	"description": "Fork: Pi extension for single-agent delegation and scripted multi-agent workflows",
	"author": "lpb-work",
	"license": "MIT",
	"type": "module",
	"exports": {
		".": "./dist/index.js",
		"./background-work": "./dist/src/api/background-work.js",
		"./external-runs": "./dist/src/api/external-runs.js",
		"./delegation": "./dist/src/api/delegation.js",
		"./capability-ceiling": "./dist/src/api/capability-ceiling.js",
		"./preflight": "./dist/src/api/preflight.js",
		"./control-channel": "./dist/src/api/control-channel.js",
		"./intercom-bridge": "./dist/src/api/intercom-bridge.js",
		"./pi-args": "./dist/src/api/pi-args.js",
		"./shared-types": "./dist/src/api/shared-types.js"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/lpb-work/pi-fork.git"
	},
	"homepage": "https://github.com/lpb-work/pi-fork#readme",
	"bugs": {
		"url": "https://github.com/lpb-work/pi-fork/issues"
	},
	"keywords": [
		"pi-package",
		"pi",
		"pi-coding-agent",
		"subagents",
		"ai",
		"agents",
		"cli"
	],
	"bin": {
		"pi-subagents": "install.mjs"
	},
	"files": [
		"dist",
		"*.mjs",
		"agents/",
		"skills/**/*",
		"prompts/**/*",
		"README.md",
		"CHANGELOG.md"
	],
	"scripts": {
		"clean": "node -e \"import('node:fs/promises').then(fs=>fs.rm('dist',{recursive:true,force:true}))\"",
		"build": "tsgo -p tsconfig.build.json",
		"build:bootstrap": "tsgo -p tsconfig.build.json --noCheck",
		"typecheck": "tsc --noEmit",
		"test:unit": "node --experimental-strip-types --test test/unit/*.test.ts",
		"test:integration": "node --experimental-strip-types --import ./test/support/register-loader.mjs --test test/integration/*.test.ts",
		"test:e2e": "node --experimental-strip-types --import ./test/support/register-loader.mjs --test test/e2e/*.test.ts",
		"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
		"prepublishOnly": "npm run clean && npm run build"
	},
	"pi": {
		"extensions": [
			"./dist/index.js"
		],
		"skills": [
			"./skills"
		],
		"prompts": [
			"./prompts"
		]
	},
	"peerDependencies": {
		"@lpb-work/pi-agent-core": "*",
		"@lpb-work/pi-ai": ">=0.80.0",
		"@lpb-work/pi-coding-agent": "*",
		"@lpb-work/pi-tui": "*"
	},
	"peerDependenciesMeta": {
		"@lpb-work/pi-agent-core": {
			"optional": true
		},
		"@lpb-work/pi-ai": {
			"optional": true
		},
		"@lpb-work/pi-coding-agent": {
			"optional": true
		},
		"@lpb-work/pi-tui": {
			"optional": true
		}
	},
	"dependencies": {
		"jiti": "2.7.0",
		"typebox": "1.3.7",
		"yaml": "2.9.0"
	},
	"devDependencies": {
		"@lpb-work/pi-agent-core": "^1.1.3",
		"@lpb-work/pi-ai": "^1.1.3",
		"@lpb-work/pi-tui": "^1.1.3",
		"@types/node": "24.13.3",
		"typescript": "5.9.3",
		"@lpb-work/pi-coding-agent": "^1.1.3"
	}
}
