-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 889 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 889 Bytes
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
{
"name": "better-auth-abac",
"version": "1.1.5-prerelease",
"description": "A package for ABAC in better-auth",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/cnbrown04/better-auth-abac.git"
},
"author": "cnbrown04",
"license": "ISC",
"dependencies": {
"better-auth": "^1.2.8",
"kysely": "^0.28.2",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/node": "^24.0.8",
"semantic-release": "^24.2.5"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
}
}