acpx/package.json
2026-02-20 17:56:11 +01:00

77 lines
1.8 KiB
JSON

{
"name": "acpx",
"version": "0.1.3",
"description": "Headless CLI client for the Agent Client Protocol (ACP) — talk to coding agents from the command line",
"type": "module",
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"bin": {
"acpx": "dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm --dts --clean",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build:test && node --test dist-test/test/*.test.js",
"prepare": "husky",
"precommit": "npm exec -- lint-staged && npm run -s build",
"prepack": "npm run build",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "release-it",
"release:ci": "release-it --ci"
},
"keywords": [
"acp",
"agent-client-protocol",
"cli",
"codex",
"claude-code",
"coding-agent",
"ai"
],
"author": "Janitr AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/janitrai/acpx.git"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.14.1",
"commander": "^13.0.0",
"skillflag": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write --ignore-unknown",
"eslint --fix"
],
"*.{json,md}": [
"prettier --write --ignore-unknown"
]
}
}