autoclaw/package.json
2026-02-10 16:37:29 +08:00

70 lines
1.6 KiB
JSON

{
"name": "autoclaw",
"version": "1.0.39",
"type": "module",
"main": "dist/index.js",
"bin": {
"autoclaw": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"keywords": [
"ai",
"cli",
"agent",
"automation",
"openai",
"tool",
"docker",
"headless",
"devops",
"llm",
"gpt-4",
"typescript",
"orchestration",
"infrastructure",
"terminal"
],
"author": "AutoClaw Contributor",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tsingliuwin/autoclaw.git"
},
"bugs": {
"url": "https://github.com/tsingliuwin/autoclaw/issues"
},
"homepage": "https://github.com/tsingliuwin/autoclaw#readme",
"description": "A lightweight AI agent CLI tool that brings the power of LLMs to your terminal.",
"dependencies": {
"@mozilla/readability": "^0.6.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^16.4.7",
"inquirer": "^13.2.2",
"jsdom": "^28.0.0",
"nodemailer": "^8.0.0",
"openai": "^6.18.0",
"ora": "^9.3.0",
"playwright": "^1.58.2"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.2.1",
"@types/nodemailer": "^7.0.9",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}