laf/packages/cloud-sdk/package.json
maslow 3ee12db5cf
refactor(db-proxy): refactor accessor constructor in database-proxy, add objectid type as global in runtime; (#1738)
* refactor(db-proxy): refact constructor of accessor
* add ObjectId to global in runtime
2023-12-14 15:19:12 +08:00

44 lines
1.1 KiB
JSON

{
"name": "@lafjs/cloud",
"version": "1.0.0-beta.13-storage-pr6",
"description": "The cloud sdk for laf cloud function",
"main": "dist/index.js",
"scripts": {
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --fix --ext .ts --ext .js",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labring/laf.git"
},
"bugs": {
"url": "https://github.com/labring/laf/issues"
},
"homepage": "https://github.com/labring/laf#readme",
"keywords": [
"laf"
],
"author": "maslow (wangfugen@126.com)",
"license": "ISC",
"devDependencies": {
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.468.0",
"@aws-sdk/client-sts": "^3.468.0",
"@aws-sdk/s3-request-presigner": "^3.468.0",
"@types/express": "^4.17.15",
"@types/ws": "^8.5.3",
"axios": "^1.2.1",
"database-proxy": "^1.0.0-beta.12-pr0",
"mongodb": "^5.9.2",
"ws": "^8.11.0"
},
"lint-staged": {
"*.{ts,js}": "eslint --fix"
}
}