nestjs-guards/package.json
autocommit 90428fabfe
Some checks failed
Build and Publish / build-and-publish (push) Failing after 37s
deps-upgrade(deps): ⬆️ Update dependencies to latest stable versions for security patches and bug fixes
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:16:36 -07:00

62 lines
1.6 KiB
JSON

{
"name": "@lilith/nestjs-guards",
"type": "module",
"version": "1.0.0",
"description": "NestJS authorization guards for role-based and resource-based access control",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist"
},
"peerDependencies": {
"@lilith/nestjs-auth": "^1.0.0",
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/core": "^10.0.0 || ^11.0.0",
"reflect-metadata": "^0.2.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@lilith/nestjs-auth": "workspace:*",
"@nestjs/common": "^11.0.2",
"@nestjs/core": "^11.0.5",
"@types/express": "^4.17.25",
"@types/node": "^20.19.28",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}