-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.89 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.89 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
{
"name": "@asgardeo/nuxt",
"version": "0.0.0",
"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"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "nuxt module-build prepare && nuxt module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "nuxt prepare && eslint .",
"test": "vitest run --passWithNoTests",
"typecheck": "nuxt prepare && vue-tsc --noEmit"
},
"dependencies": {
"@asgardeo/node": "workspace:*",
"@nuxt/kit": "3.16.2",
"defu": "6.1.4"
},
"devDependencies": {
"@nuxt/devtools": "2.4.0",
"@nuxt/eslint-config": "1.3.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",
"nuxt": "3.16.2",
"typescript": "5.8.3",
"vitest": "3.1.1",
"vue-tsc": "2.2.8"
},
"publishConfig": {
"access": "public"
}
}