-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.27 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@sapientpro/nestjs-gate",
"version": "1.1.2",
"description": "Lightweight authorization gate for NestJS with policy classes, ability callbacks, and before/after hooks.",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Dmytro Kulyk",
"email": "dmytro.kulyk@sapient.pro"
},
"repository": {
"type": "git",
"url": "https://github.com/sapientpro/nestjs-gate.git"
},
"bugs": {
"url": "https://github.com/sapientpro/nestjs-gate/issues"
},
"homepage": "https://github.com/sapientpro/nestjs-gate",
"keywords": [
"nestjs",
"authorization",
"gate",
"policy"
],
"engines": {
"node": ">= 20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "rimraf ./dist && tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "^20.13.0",
"rimraf": "^4.4.1",
"typescript": "^5.9.2"
},
"peerDependencies": {
"@nestjs/common": ">=10.0.0",
"@nestjs/core": ">=10.0.0",
"tslib": "^2.5.0"
},
"files": [
"dist"
]
}