Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@esengine/database-drivers",
|
|
"version": "1.1.0",
|
|
"description": "Database connection drivers for ESEngine | ESEngine 数据库连接驱动",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"module.json"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"build:watch": "tsup --watch",
|
|
"type-check": "tsc --noEmit",
|
|
"clean": "rimraf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"mongodb": ">=6.0.0",
|
|
"ioredis": ">=5.0.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"mongodb": {
|
|
"optional": true
|
|
},
|
|
"ioredis": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.0.0",
|
|
"mongodb": "^6.12.0",
|
|
"ioredis": "^5.3.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.8.0",
|
|
"rimraf": "^5.0.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|