Skip to content

Commit

Permalink
feat: support basic mysql features
Browse files Browse the repository at this point in the history
  • Loading branch information
Tangge777 committed Feb 25, 2025
1 parent 1ebfb23 commit a549600
Show file tree
Hide file tree
Showing 15 changed files with 1,036 additions and 54 deletions.
17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "ai-db-agent",
"type": "module",
"version": "0.0.0",
"description": "An ai database agent",
"version": "0.0.1",
"description": "An AI database agent",
"author": "tangge",
"license": "MIT",
"homepage": "https://github.com/code/ai-db-agent",
Expand Down Expand Up @@ -32,15 +32,17 @@
"prepack": "oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md",
"cz": "git add. && cz"
"cz": "git add . && cz"
},
"dependencies": {
"@inquirer/prompts": "^7.3.2",
"@inquirer/select": "^4.0.9",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/plugin-plugins": "^5",
"@salesforce/core": "^8.8.3"
"@salesforce/core": "^8.8.3",
"knex": "^3.1.0",
"mysql": "^2.18.1",
"ora": "^8.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
Expand Down Expand Up @@ -79,8 +81,11 @@
},
"topicSeparator": " ",
"topics": {
"connection": {
"description": "Manage database connections"
},
"database": {
"description": "Say hello to the world and others"
"description": "Manage databases"
}
}
},
Expand Down
Loading

0 comments on commit a549600

Please sign in to comment.