forked from asgardeo/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.44 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@asgardeo/nuxt",
"version": "0.2.3",
"description": "Nuxt module for Asgardeo - Authentication and Identity Management",
"author": "WSO2",
"license": "Apache-2.0",
"homepage": "https://github.com/asgardeo/javascript/tree/main/packages/nuxt#readme",
"bugs": {
"url": "https://github.com/asgardeo/javascript/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/asgardeo/javascript",
"directory": "packages/nuxt"
},
"keywords": [
"asgardeo",
"authentication",
"identity",
"oauth",
"oidc",
"nuxt",
"nuxt3",
"login",
"sso",
"identity-management"
],
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./server": {
"types": "./dist/runtime/server/index.d.ts",
"import": "./dist/runtime/server/index.js"
},
"./errors": {
"types": "./dist/runtime/errors/index.d.ts",
"import": "./dist/runtime/errors/index.js"
},
"./utils": {
"types": "./dist/runtime/utils/index.d.ts",
"import": "./dist/runtime/utils/index.js"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
],
"server": [
"./dist/runtime/server/index.d.ts"
],
"errors": [
"./dist/runtime/errors/index.d.ts"
],
"utils": [
"./dist/runtime/utils/index.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "nuxt module-build prepare && nuxt module-build build",
"lint": "nuxt prepare && eslint .",
"test": "vitest run --passWithNoTests",
"typecheck": "nuxt module-build prepare && vue-tsc --noEmit"
},
"dependencies": {
"@asgardeo/browser": "workspace:*",
"@asgardeo/node": "workspace:*",
"@asgardeo/vue": "workspace:*",
"@nuxt/kit": "3.16.2",
"defu": "6.1.4",
"jose": "^6.0.11"
},
"peerDependencies": {
"nuxt": ">=3.10.0",
"vue": ">=3.5.0"
},
"devDependencies": {
"@nuxt/devtools": "2.4.0",
"@nuxt/module-builder": "1.0.1",
"@nuxt/schema": "3.16.2",
"@nuxt/test-utils": "3.17.2",
"@types/node": "22.13.4",
"changelogen": "0.6.1",
"cookie-es": "2.0.0",
"eslint": "8.57.0",
"h3": "1.15.11",
"nuxt": "3.16.2",
"typescript": "5.8.3",
"vitest": "3.1.1",
"vue-tsc": "2.2.8"
},
"publishConfig": {
"access": "public"
}
}