-
-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.21 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.21 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
{
"name": "@sidebase/nuxt-auth",
"version": "1.2.0",
"license": "MIT",
"type": "module",
"description": "Authentication built for Nuxt 3! Easily add authentication via OAuth providers, credentials or Email Magic URLs!",
"homepage": "https://auth.sidebase.io",
"repository": "github:sidebase/nuxt-auth",
"engines": {
"pnpm": ">=9.4.0",
"node": ">=20"
},
"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",
"build": "nuxi build",
"lint": "oxlint --deny-warnings -D correctness -D suspicious -D perf -D no-unused-vars && eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"clean": "rm -rf playground-authjs/.nuxt playground-local/.nuxt playground-refresh/.nuxt dist .nuxt",
"typecheck": "nuxi prepare playground-local && tsc --noEmit",
"dev:prepare": "nuxt-module-build build --stub",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test:unit": "vitest"
},
"dependencies": {
"@nuxt/kit": "^3.20.2",
"defu": "^6.1.4",
"h3": "^1.15.5",
"knitwork": "^1.3.0",
"nitropack": "^2.13.1",
"requrl": "^3.0.2",
"scule": "^1.3.0",
"ufo": "^1.6.3"
},
"peerDependencies": {
"next-auth": "~4.21.1"
},
"peerDependenciesMeta": {
"next-auth": {
"optional": true
}
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^3.20.2",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^24.10.11",
"eslint": "^9.39.2",
"nuxt": "^3.20.2",
"ofetch": "^1.5.1",
"oxlint": "^1.39.0",
"ts-essentials": "^9.4.2",
"typescript": "^5.8.3",
"vitepress": "^1.6.4",
"vitest": "^3.2.4",
"vue-tsc": "^2.2.12"
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}