ai-expert
Version:
AI Expert CLI - Advanced management system for specialized Claude assistants
71 lines • 1.68 kB
JSON
{
"name": "ai-expert",
"version": "1.0.0",
"description": "AI Expert CLI - Advanced management system for specialized Claude assistants",
"type": "module",
"bin": {
"ai-expert": "./dist/cli/index.js",
"ai": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"ai",
"claude",
"anthropic",
"specialist",
"expert",
"cli",
"assistant",
"prompt-engineering"
],
"author": {
"name": "Anderson Denis da Rosa",
"url": "https://github.com/andersondrosa"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"inquirer": "^9.2.12",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.1.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/andersondrosa/ai-expert-cli.git"
},
"bugs": {
"url": "https://github.com/andersondrosa/ai-expert-cli/issues"
},
"homepage": "https://github.com/andersondrosa/ai-expert-cli#readme",
"publishConfig": {
"access": "public"
}
}