-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.46 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
58
59
60
61
62
63
{
"name": "@openfga/sdk",
"version": "0.7.0",
"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.7.5",
"tiny-async-pool": "^2.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/tiny-async-pool": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"NOTICE.txt",
"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": ">=14.17.0"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}