minio/package.json
2026-01-21 11:37:29 -08:00

60 lines
1.4 KiB
JSON

{
"name": "@lilith/minio",
"version": "1.2.2",
"description": "MinIO object storage client with NestJS integration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./nestjs": {
"types": "./dist/nestjs/index.d.ts",
"import": "./dist/nestjs/index.js",
"require": "./dist/nestjs/index.js"
}
},
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.787.0",
"@aws-sdk/s3-request-presigner": "^3.787.0"
},
"devDependencies": {
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@types/node": "^22.19.5",
"typescript": "^5.9.3"
},
"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.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}