-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "casbin-drizzle-adapter",
"version": "1.1.1",
"description": "Drizzle adapter for Casbin",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"scripts": {
"build": "tsup --minify",
"format": "prettier -w \"src/**/*.ts\"",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "dotenv -- vitest",
"push": "dotenv -- drizzle-kit push:pg",
"release": "changeset version"
},
"files": [
"dist"
],
"keywords": [
"casbin",
"node-casbin",
"adapter",
"postgres",
"mysql",
"sqlite",
"drizzle-orm",
"authorization",
"rbac"
],
"author": "hngngn <hngngn.dev@gmail.com>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.10.0",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"casbin": "^5.28.0",
"dotenv-cli": "^7.3.0",
"drizzle-kit": "^0.20.4",
"drizzle-orm": "^0.29.0",
"eslint": "^8.54.0",
"pg": "^8.11.3",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^0.34.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hngngn/casbin-drizzle-adapter.git"
},
"homepage": "https://github.com/hngngn/casbin-drizzle-adapter#readme",
"bugs": {
"url": "https://github.com/hngngn/casbin-drizzle-adapter/issues"
}
}