{
	"name": "piagent",
	"version": "0.52.0",
	"description": "Piagent - Lightweight multi-channel AI agent gateway (like OpenClaw but simpler)",
	"type": "module",
	"bin": {
		"piagent": "dist/cli.js"
	},
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js"
		},
		"./gateway": {
			"types": "./dist/gateway/index.d.ts",
			"import": "./dist/gateway/index.js"
		},
		"./agent": {
			"types": "./dist/agent/index.d.ts",
			"import": "./dist/agent/index.js"
		}
	},
	"files": [
		"dist",
		"public",
		"README.md",
		"CHANGELOG.md"
	],
	"scripts": {
		"clean": "shx rm -rf dist",
		"dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput",
		"build": "tsgo -p tsconfig.build.json && npm run build:web && shx chmod +x dist/cli.js",
		"build:web": "tsc -p tsconfig.web.json && shx cp -r public/* dist/public/",
		"check": "tsc --noEmit -p tsconfig.build.json",
		"test": "vitest --run",
		"prepublishOnly": "npm run clean && npm run build"
	},
	"dependencies": {
		"@mariozechner/pi-agent-core": "^0.51.5",
		"@mariozechner/pi-ai": "^0.51.5",
		"@mariozechner/pi-coding-agent": "^0.51.5",
		"@mariozechner/pi-tui": "^0.51.5",
		"@mariozechner/pi-web-ui": "^0.51.5",
		"bonjour-service": "^1.3.0",
		"chalk": "^5.5.0",
		"express": "^5.1.0",
		"lit": "^3.1.0",
		"ws": "^8.18.2",
		"yaml": "^2.8.2",
		"zod": "^3.25.76"
	},
	"devDependencies": {
		"@types/express": "^5.0.2",
		"@types/node": "^24.3.0",
		"@types/ws": "^8.18.0",
		"shx": "^0.4.0",
		"typescript": "^5.7.3",
		"vitest": "^3.2.4"
	},
	"keywords": [
		"piagent",
		"ai-gateway",
		"websocket",
		"multi-channel",
		"telegram",
		"discord",
		"slack",
		"agent"
	],
	"author": "Mario Zechner",
	"license": "MIT",
	"repository": {
		"type": "git",
		"url": "git+https://github.com/badlogic/pi-mono.git",
		"directory": "packages/piagent"
	},
	"engines": {
		"node": ">=20.0.0"
	}
}
