{
	"name": "@mthanh/vespercli",
	"version": "1.3.2",
	"description": "Vesper Agent Suite — CLI to manage AI agents, prompts, instructions, and skills for GitHub Copilot (VS Code) and Claude Code",
	"type": "module",
	"main": "./src/cli/index.js",
	"bin": {
		"vespercli": "./bin/vesper.js"
	},
	"files": [
		"bin",
		"dist",
		"src/mcp/vesper-indexing/dist",
		"src/mcp/vesper-indexing/package.json",
		"src/mcp/vesper-indexing/package-lock.json",
		"assets",
		"scripts"
	],
	"scripts": {
		"start": "node bin/vesper.js",
		"dev": "VESPER_DEV=true node bin/vesper.js",
		"test": "echo \"No tests yet\" && exit 0",
		"build:cli": "esbuild src/cli/index.js --bundle --platform=node --format=esm --minify --outfile=dist/cli.min.js --external:@inquirer/prompts --external:commander --external:picocolors --external:strip-json-comments",
		"build:mcp": "cd src/mcp/vesper-indexing && npm install && npm run build",
		"build": "npm run build:cli && npm run build:mcp",
		"prepublishOnly": "npm run build",
		"postinstall": "node scripts/postinstall.js"
	},
	"keywords": [
		"vesper",
		"vespercli",
		"copilot",
		"github",
		"claude",
		"claude-code",
		"agents",
		"cli",
		"vscode",
		"skills"
	],
	"author": "Thanh Tran",
	"license": "MIT",
	"publishConfig": {
		"access": "public"
	},
	"repository": {
		"type": "git",
		"url": "https://github.com/mthanhtran/vesper.git"
	},
	"engines": {
		"node": ">=18.0.0"
	},
	"dependencies": {
		"@inquirer/prompts": "^7.0.0",
		"commander": "^12.1.0",
		"picocolors": "^1.1.0",
		"strip-json-comments": "^5.0.3"
	},
	"devDependencies": {
		"esbuild": "^0.20.0"
	}
}
