nohandcoder
Version:
An AI agent for code editing, searching, and project analysis
56 lines (55 loc) • 1.3 kB
JSON
{
"name": "nohandcoder",
"version": "1.0.7",
"description": "An AI agent for code editing, searching, and project analysis",
"main": "dist/cli.js",
"bin": {
"nohandcoder": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "ts-node src/chat.ts",
"chat": "ts-node src/cli.ts",
"prepublishOnly": "npm run build && chmod +x ./dist/cli.js"
},
"keywords": [
"ai",
"code-assistant",
"openai",
"typescript",
"cli",
"code-editing",
"project-analysis"
],
"author": "Hung Dinh",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hungds99/nohandcoder.git"
},
"bugs": {
"url": "https://github.com/hungds99/nohandcoder/issues"
},
"homepage": "https://github.com/hungds99/nohandcoder#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"glob": "^10.3.10",
"inquirer": "^8.2.6",
"inquirer-search-list": "^1.2.6",
"openai": "^4.28.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/inquirer": "^8.2.6",
"@types/node": "^20.17.28",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2"
},
"publishConfig": {
"access": "public"
}
}