-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.48 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.48 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
{
"name": "@openfga/sdk",
"version": "0.9.5",
"description": "JavaScript and Node.js SDK for OpenFGA",
"author": "OpenFGA",
"keywords": [
"openfga",
"authorization",
"fga",
"fine-grained-authorization",
"rebac",
"zanzibar"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist/",
"prepublishOnly": "rm -rf dist/ && npm run build",
"test": "jest --config ./tests/jest.config.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"axios": "1.15.0",
"jose": "5.10.0",
"tiny-async-pool": "^2.1.0"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "^25.2.2",
"@types/tiny-async-pool": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "9.39.2",
"globals": "^17.3.0",
"jest": "30.2.0",
"nock": "^14.0.11",
"ts-jest": "29.4.6",
"typescript": "^5.9.3"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/openfga/js-sdk.git"
},
"bugs": {
"url": "https://github.com/openfga/js-sdk/issues"
},
"homepage": "https://github.com/openfga/js-sdk#readme",
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}