-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "@openfga/sdk",
"version": "0.9.7",
"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",
"pretest": "node ./tests/prepare-tests.mjs && tsc --project ./tests/tsconfig.spec.json",
"test": "node ./tests/run-tests.mjs",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@opentelemetry/api": "^1.9.1",
"axios": "1.19.0",
"jose": "5.10.0",
"tiny-async-pool": "^2.1.0"
},
"devDependencies": {
"@types/node": "^26.1.0",
"@types/tiny-async-pool": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@typescript/native": "npm:typescript@^7.0.2",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"nock": "^14.0.14",
"typescript": "npm:@typescript/typescript6@^6.0.3"
},
"overrides": {
"brace-expansion": "^5.0.9",
"js-yaml": "^4.1.1"
},
"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
}
}