agp-cli
Version:
Agentic Programming Project CLI - Standardized knowledge layer for AI-assisted development
66 lines • 1.48 kB
JSON
{
"name": "agp-cli",
"version": "0.2.7",
"description": "Agentic Programming Project CLI - Standardized knowledge layer for AI-assisted development",
"main": "dist/cli.js",
"bin": {
"agp": "dist/cli.js"
},
"keywords": [
"ai",
"agentic",
"programming",
"cli",
"knowledge",
"documentation",
"automation",
"development"
],
"author": "bang9",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/bang9/agp-cli.git"
},
"bugs": {
"url": "https://github.com/bang9/agp-cli/issues"
},
"homepage": "https://github.com/bang9/agp-cli#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.0",
"@types/yauzl": "^2.10.3",
"prettier": "^3.5.3",
"tsx": "^4.20.1",
"typescript": "^5.8.3",
"vitest": "^3.2.3"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.6.3",
"node-fetch": "^3.3.2",
"ora": "^8.2.0",
"yauzl": "^3.2.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest",
"test:watch": "vitest --watch",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist"
}
}