UNPKG

@batuhanw/api-documenter

Version:
83 lines (82 loc) 2.02 kB
{ "name": "@batuhanw/api-documenter", "description": "Document your API endpoints with AI.", "version": "0.12.0", "author": "Batuhan Wilhelm", "bin": { "api-documenter": "./bin/run.js" }, "bugs": "https://github.com/BatuhanW/api-documenter/issues", "dependencies": { "@anthropic-ai/sdk": "^0.55.1", "@inquirer/prompts": "^7.6.0", "@oclif/core": "^4", "@oclif/plugin-help": "^6", "@oclif/plugin-plugins": "^5", "ai": "^4.1.2", "glob": "^11.0.3", "prettier": "^3.4.2", "repomix": "^0.2.22" }, "devDependencies": { "@oclif/test": "^4", "@types/chai": "^4", "@types/glob": "^8.1.0", "@types/mocha": "^10", "@types/node": "^18", "chai": "^4", "mocha": "^10", "oclif": "^4", "shx": "^0.3.3", "ts-node": "^10", "typescript": "^5" }, "engines": { "node": ">=18.0.0" }, "files": [ "/bin", "/dist", "/oclif.manifest.json" ], "homepage": "https://github.com/BatuhanW/api-documenter", "keywords": [ "AI API Documenter", "API Documenter", "API", "AI" ], "license": "MIT", "main": "dist/index.js", "type": "module", "oclif": { "bin": "api-documenter", "commands": { "strategy": "single", "target": "./dist/commands/doc/index.js" }, "dirname": "api-documenter", "topicSeparator": " ", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-plugins" ] }, "repository": "BatuhanW/api-documenter", "scripts": { "build": "shx rm -rf dist && tsc -b", "dev": "shx rm -rf dist && tsc -b --watch", "run": "node ./bin/run.js", "lint": "eslint . --ext .ts", "format": "prettier --write .", "postpack": "shx rm -f oclif.manifest.json", "posttest": "npm run lint", "prepack": "oclif manifest && oclif readme", "test": "mocha --forbid-only \"test/**/*.test.ts\"", "version": "oclif readme && git add README.md" }, "types": "dist/index.d.ts", "publishConfig": { "access": "public" } }