-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@askrjs/auth",
"version": "0.0.9",
"description": "Shared authentication contracts and request auth resolution for Askr",
"keywords": [
"askr",
"authentication",
"authorization",
"mfa",
"oidc",
"saml",
"totp",
"webauthn"
],
"homepage": "https://github.com/askrjs/askr-auth#readme",
"bugs": {
"url": "https://github.com/askrjs/askr-auth/issues"
},
"license": "Apache-2.0",
"author": {
"name": "askrjs",
"url": "https://github.com/askrjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/askrjs/askr-auth.git"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./jwt": {
"types": "./dist/jwt.d.ts",
"import": "./dist/jwt.js"
},
"./oidc": {
"types": "./dist/oidc.d.ts",
"import": "./dist/oidc.js"
},
"./saml": {
"types": "./dist/saml.d.ts",
"import": "./dist/saml.js"
},
"./mfa": {
"types": "./dist/mfa.d.ts",
"import": "./dist/mfa.js"
},
"./webauthn-client": {
"types": "./dist/webauthn-client.d.ts",
"import": "./dist/webauthn-client.js"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"lint": "vp lint src tests && npm run typecheck",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vp test run -c vitest.config.ts",
"test:publint": "publint",
"pack:check": "node tests/package-artifacts.js",
"check": "npm run lint && npm run typecheck && npm test && npm run build && npm run test:publint && npm run pack:check",
"prepack": "npm run build",
"prepublishOnly": "npm run check"
},
"dependencies": {
"@xmldom/xmldom": "0.9.10",
"xml-crypto": "6.1.2",
"xml-encryption": "5.0.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"publint": "^0.3.23",
"typescript": "^7.0.2",
"vite-plus": "^0.2.8",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "[email protected]"
}