-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 KB
/
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
36
37
38
39
{
"name": "pundit-ts",
"version": "0.6.0",
"description": "Authorization library in pure typescript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^3.0.7"
},
"scripts": {
"build": "tsc",
"format": "biome format --write",
"lint": "biome lint --write",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fatihky/pundit-ts.git"
},
"keywords": [
"authorization",
"pundit"
],
"author": "Fatih Kaya <1994274@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fatihky/pundit-ts/issues"
},
"homepage": "https://github.com/fatihky/pundit-ts#readme",
"packageManager": "pnpm@9.14.4+sha512.c8180b3fbe4e4bca02c94234717896b5529740a6cbadf19fa78254270403ea2f27d4e1d46a08a0f56c89b63dc8ebfd3ee53326da720273794e6200fcf0d184ab"
}