@absolutejs/auth 0.45.7 → 0.45.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +53 -1
- package/dist/index.js.map +5 -4
- package/dist/sso/nodeSamlAdapter.d.ts +2 -0
- package/package.json +10 -4
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.45.
|
|
2
|
+
"version": "0.45.8",
|
|
3
3
|
"name": "@absolutejs/auth",
|
|
4
4
|
"description": "An authorization library for absolutejs",
|
|
5
5
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"license": "BSL-1.1",
|
|
14
14
|
"author": "Alex Kahn",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"build": "rm -rf dist && bun build src/index.ts src/htmx/index.ts src/client/index.ts src/client/react.ts src/client/vue.ts src/client/solid.ts src/client/svelte.ts src/plugins/index.ts src/providers/index.ts --root src --outdir dist --sourcemap --target=bun --external elysia --external react --external vue --external solid-js --external svelte --external @opentelemetry/api --external @simplewebauthn/server && bun build src/cli/migrate.ts --outdir dist/cli --sourcemap --target=bun --external @neondatabase/serverless --external drizzle-orm && bun build src/fingerprint-client/index.ts --outdir dist/fingerprint-client --sourcemap --target=browser && tsc --emitDeclarationOnly --project tsconfig.json && chmod +x dist/cli/migrate.js",
|
|
16
|
+
"build": "rm -rf dist && bun build src/index.ts src/htmx/index.ts src/client/index.ts src/client/react.ts src/client/vue.ts src/client/solid.ts src/client/svelte.ts src/plugins/index.ts src/providers/index.ts --root src --outdir dist --sourcemap --target=bun --external elysia --external react --external vue --external solid-js --external svelte --external @opentelemetry/api --external @simplewebauthn/server --external @node-saml/node-saml && bun build src/cli/migrate.ts --outdir dist/cli --sourcemap --target=bun --external @neondatabase/serverless --external drizzle-orm && bun build src/fingerprint-client/index.ts --outdir dist/fingerprint-client --sourcemap --target=browser && tsc --emitDeclarationOnly --project tsconfig.json && chmod +x dist/cli/migrate.js",
|
|
17
17
|
"config": "absolute config",
|
|
18
18
|
"test": "bun test",
|
|
19
19
|
"format": "absolute prettier --write",
|
|
@@ -39,7 +39,8 @@
|
|
|
39
39
|
"react": ">=18 <20",
|
|
40
40
|
"solid-js": ">=1.8",
|
|
41
41
|
"svelte": ">=4",
|
|
42
|
-
"vue": ">=3.4"
|
|
42
|
+
"vue": ">=3.4",
|
|
43
|
+
"@node-saml/node-saml": ">=5"
|
|
43
44
|
},
|
|
44
45
|
"peerDependenciesMeta": {
|
|
45
46
|
"@opentelemetry/api": {
|
|
@@ -62,6 +63,9 @@
|
|
|
62
63
|
},
|
|
63
64
|
"vue": {
|
|
64
65
|
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"@node-saml/node-saml": {
|
|
68
|
+
"optional": true
|
|
65
69
|
}
|
|
66
70
|
},
|
|
67
71
|
"dependencies": {
|
|
@@ -72,6 +76,7 @@
|
|
|
72
76
|
"devDependencies": {
|
|
73
77
|
"@absolutejs/absolute": "^0.19.0-beta.1023",
|
|
74
78
|
"@eslint/js": "^10.0.1",
|
|
79
|
+
"@node-saml/node-saml": "^5.1.0",
|
|
75
80
|
"@opentelemetry/api": "^1.9.1",
|
|
76
81
|
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
77
82
|
"@simplewebauthn/browser": "^13.3.0",
|
|
@@ -158,5 +163,6 @@
|
|
|
158
163
|
"dist/index.d.ts"
|
|
159
164
|
]
|
|
160
165
|
}
|
|
161
|
-
}
|
|
166
|
+
},
|
|
167
|
+
"build": null
|
|
162
168
|
}
|