-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 939 Bytes
/
package.json
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
{
"name": "pundit-ts",
"version": "0.2.8",
"description": "Authorization library in pure typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatihky/pundit-ts.git"
},
"keywords": [
"authorization",
"pundit"
],
"author": "Fatih Kaya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fatihky/pundit-ts/issues"
},
"homepage": "https://github.com/fatihky/pundit-ts#readme",
"packageManager": "[email protected]+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}