@openape/nuxt-auth-sp 0.6.0 → 0.6.1
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/module.json +2 -2
- package/package.json +20 -20
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openape/nuxt-auth-sp",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.6.
|
|
4
|
+
"version": "0.6.1",
|
|
5
5
|
"description": "OpenAPE Service Provider Nuxt module — adds OIDC login via DNS-based IdP discovery",
|
|
6
6
|
"author": "Delta Mind GmbH",
|
|
7
7
|
"license": "AGPL-3.0-or-later",
|
|
@@ -20,33 +20,19 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
-
"scripts": {
|
|
24
|
-
"build": "nuxt-module-build build",
|
|
25
|
-
"dev": "nuxt-module-build build --stub",
|
|
26
|
-
"prepare": "nuxi prepare playground",
|
|
27
|
-
"typecheck": "vue-tsc --noEmit",
|
|
28
|
-
"lint": "eslint .",
|
|
29
|
-
"test": "vitest run --passWithNoTests",
|
|
30
|
-
"changeset": "changeset",
|
|
31
|
-
"version-packages": "changeset version",
|
|
32
|
-
"release": "changeset publish"
|
|
33
|
-
},
|
|
34
23
|
"dependencies": {
|
|
35
24
|
"@nuxt/kit": "^3.21.1",
|
|
36
|
-
"
|
|
37
|
-
"@openape/
|
|
38
|
-
"
|
|
25
|
+
"defu": "^6.1.4",
|
|
26
|
+
"@openape/auth": "0.5.0",
|
|
27
|
+
"@openape/core": "0.5.1"
|
|
39
28
|
},
|
|
40
29
|
"peerDependencies": {
|
|
41
30
|
"nuxt": "^4.0.0"
|
|
42
31
|
},
|
|
43
32
|
"devDependencies": {
|
|
44
|
-
"@antfu/eslint-config": "^7.6.1",
|
|
45
|
-
"@changesets/cli": "^2.30.0",
|
|
46
33
|
"@nuxt/module-builder": "^1.0.2",
|
|
47
34
|
"@nuxt/ui": "^4.5.1",
|
|
48
35
|
"@types/node": "^22.19.13",
|
|
49
|
-
"eslint": "^9.39.3",
|
|
50
36
|
"nuxt": "^4.3.1",
|
|
51
37
|
"tailwindcss": "^4.2.1",
|
|
52
38
|
"typescript": "^5.9.3",
|
|
@@ -57,5 +43,19 @@
|
|
|
57
43
|
"engines": {
|
|
58
44
|
"node": ">=22"
|
|
59
45
|
},
|
|
60
|
-
"
|
|
61
|
-
|
|
46
|
+
"publishConfig": {
|
|
47
|
+
"access": "public"
|
|
48
|
+
},
|
|
49
|
+
"repository": {
|
|
50
|
+
"type": "git",
|
|
51
|
+
"url": "https://github.com/openape-ai/openape.git",
|
|
52
|
+
"directory": "modules/nuxt-auth-sp"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "nuxt-module-build build",
|
|
56
|
+
"dev": "nuxt-module-build build --stub",
|
|
57
|
+
"typecheck": "vue-tsc --noEmit",
|
|
58
|
+
"lint": "eslint .",
|
|
59
|
+
"test": "vitest run --passWithNoTests"
|
|
60
|
+
}
|
|
61
|
+
}
|