-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.66 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
{
"name": "@nuxtjs/kinde",
"version": "0.4.0",
"description": "Nuxt integration for Kinde authentication",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/kinde.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxt dev playground",
"dev:build": "nuxt build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxt prepare playground",
"release": "bumpp && pnpm publish",
"lint": "eslint .",
"test": "vitest run",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@kinde-oss/kinde-typescript-sdk": "^2.11.0",
"@nuxt/kit": "^4.0.0",
"cookie-es": "^3.0.0",
"defu": "^6.1.4",
"pathe": "^2.0.0",
"ufo": "^1.6.1"
},
"devDependencies": {
"@nuxt/devtools": "3.2.4",
"@nuxt/eslint-config": "1.15.2",
"@nuxt/module-builder": "1.0.2",
"@nuxt/schema": "4.4.2",
"@nuxt/test-utils": "4.0.2",
"@types/node": "24.12.2",
"@vue/test-utils": "2.4.6",
"bumpp": "11.0.1",
"changelogithub": "14.0.0",
"eslint": "10.2.1",
"happy-dom": "20.9.0",
"nuxt": "4.4.2",
"typescript": "6.0.3",
"vitest": "4.1.4",
"vue-tsc": "3.2.7"
},
"resolutions": {
"@nuxt/schema": "4.4.2",
"@nuxtjs/kinde": "link:."
},
"packageManager": "pnpm@10.33.0"
}