minio/package.json
autocommit b5fab566ab
Some checks failed
Build and Publish / build-and-publish (push) Failing after 36s
deps-upgrade(deps): ⬆️ Update dependencies to latest stable versions for bug fixes and performance improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:11:27 -07:00

64 lines
1.4 KiB
JSON

{
"name": "@lilith/minio",
"version": "1.2.2",
"description": "MinIO object storage client with NestJS integration",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./nestjs": {
"types": "./dist/nestjs.d.ts",
"import": "./dist/nestjs.js"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"clean": "rm -rf dist"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.787.0",
"@aws-sdk/s3-request-presigner": "^3.787.0"
},
"devDependencies": {
"@lilith/service-registry": "^1.3.0",
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@types/node": "^22.19.5",
"typescript": "^5.9.3",
"tsup": "^8.5.1"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0",
"@nestjs/config": ">=3.0.0",
"@lilith/service-registry": ">=1.0.0"
},
"peerDependenciesMeta": {
"@nestjs/common": {
"optional": true
},
"@nestjs/config": {
"optional": true
},
"@lilith/service-registry": {
"optional": true
}
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}