-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
75
76
77
{
"name": "@authress/sdk",
"version": "0.0.0",
"description": "Client SDK for Authress authorization as a service. Provides managed authorization api to secure service resources including user data.",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"src"
],
"scripts": {
"lint": "check-dts index.d.ts && eslint tests tests_integration src make.js index.js index.d.ts",
"test": "vitest run --config vitest.config.js",
"integration": "vitest run --config vitest.integration.config.js"
},
"dependencies": {
"@authress/login": "*",
"base64url": "^3.0.1",
"jose": "^4.8.3",
"luxon": "3"
},
"devDependencies": {
"@authress/eslint-config": "^2.0.18",
"@aws-sdk/client-kms": "^3.1045.0",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"chai": "^4.2.0",
"check-dts": "^0.7.1",
"ci-build-tools": "^1.0.13",
"commander": "^4.0.1",
"eslint": "^10.1.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"sinon": "^7.5.0",
"travis-build-tools": "~1.2",
"typescript": "<4.9.0",
"typescript-eslint": "^8.57.1",
"vitest": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Authress/authress-sdk.js"
},
"keywords": [
"authorization",
"authorization as a service",
"authentication",
"user authentication",
"Authress",
"Authress client",
"access management",
"access management as a service",
"user security",
"polar",
"open source policy engine",
"embedded authorization",
"batteries included authorization"
],
"author": "Authress Developers <developers@authress.io> (https://authress.io)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Authress/authress-sdk.js/issues"
},
"homepage": "https://authress.io",
"peerDependencies": {
"@aws-sdk/client-kms": ">=3"
},
"peerDependenciesMeta": {
"@aws-sdk/client-kms": {
"optional": true
}
},
"engines": {
"node": ">=22"
}
}