forked from sidebase/nuxt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 KB
/
package.json
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
{
"name": "@sidebase/nuxt-auth",
"version": "0.6.0-beta.5",
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"build": "nuxi build",
"lint": "eslint . --max-warnings=0",
"clean": "rm -rf playground-authjs/.nuxt playground-local/.nuxt dist .nuxt",
"typecheck": "nuxi prepare playground-local && tsc --noEmit",
"dev:prepare": "nuxt-module-build --stub"
},
"dependencies": {
"@nuxt/kit": "^3.4.2",
"@vueuse/core": "^9.13.0",
"defu": "^6.1.2",
"h3": "^1.6.4",
"knitwork": "^1.0.0",
"nitropack": "^2.3.2",
"requrl": "^3.0.2",
"ufo": "^1.1.1"
},
"peerDependencies": {
"next-auth": "^4.21.1"
},
"devDependencies": {
"@nuxt/module-builder": "^0.3.0",
"@nuxt/schema": "^3.4.2",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18.15.11",
"eslint": "^8.37.0",
"nuxt": "^3.4.2",
"ofetch": "^1.0.1",
"ts-essentials": "^9.3.1",
"typescript": "^5.0.3",
"vue-tsc": "^1.2.0"
},
"overrides": {
"@nuxt/kit": {
"json5": ">=2.2.2"
},
"@nuxtjs/eslint-config-typescript": {
"json5": ">=1.0.2"
}
}
}