mirror of
https://github.com/executeautomation/mcp-database-server.git
synced 2025-12-09 21:12:57 +08:00
Refactor code for extensability
Refactor code for extensability
This commit is contained in:
12
package.json
12
package.json
@@ -8,18 +8,19 @@
|
||||
"bugs": "https://github.com/executeautomation/database-server/issues",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"ea-database-server": "dist/index.js"
|
||||
"ea-database-server": "dist/src/index.js"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc && shx chmod +x dist/*.js",
|
||||
"build": "tsc && shx chmod +x dist/src/index.js",
|
||||
"prepare": "npm run build",
|
||||
"watch": "tsc --watch",
|
||||
"start": "node dist/index.js",
|
||||
"dev": "tsc && node dist/index.js",
|
||||
"example": "node examples/example.js"
|
||||
"start": "node dist/src/index.js",
|
||||
"dev": "tsc && node dist/src/index.js",
|
||||
"example": "node examples/example.js",
|
||||
"clean": "rimraf dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@modelcontextprotocol/sdk": "1.9.0",
|
||||
@@ -27,6 +28,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/sqlite3": "5.1.0",
|
||||
"rimraf": "^5.0.5",
|
||||
"shx": "0.4.0",
|
||||
"typescript": "5.8.3"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user