-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "permify-toolkit",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.9.0",
"description": "Type-safe TypeScript toolkit for Permify — NestJS module, CLI, and shared config for fine-grained authorization",
"author": "Nikhil aka thisisnkc",
"license": "MIT",
"homepage": "https://github.com/thisisnkc/permify-toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/thisisnkc/permify-toolkit.git"
},
"keywords": [
"permify",
"permify-toolkit",
"authorization",
"auth",
"permissions",
"rbac",
"abac",
"rebac",
"zanzibar",
"fine-grained-authorization",
"nestjs",
"nestjs-authorization",
"grpc",
"typescript",
"access-control",
"toolkit",
"policy-engine",
"multi-tenant"
],
"main": "index.js",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"format:check": "prettier --check .",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"docs:dev": "pnpm --filter docs-site start",
"docs:build": "pnpm --filter docs-site build",
"docs:serve": "pnpm --filter docs-site serve",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^3.0.0",
"@japa/runner": "^4.4.0",
"@julr/tooling-configs": "^5.0.0",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"c8": "^10.1.3",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit ${1}"
}
}