-
-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
69 lines (69 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@sidebase/nuxt-auth",
"version": "0.10.0-rc.2",
"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": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"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",
"typecheck:refresh": "nuxi prepare playground-refresh && 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.14.1592",
"defu": "^6.1.4",
"h3": "^1.13.0",
"knitwork": "^1.1.0",
"nitropack": "^2.10.4",
"requrl": "^3.0.2",
"scule": "^1.3.0",
"ufo": "^1.5.4"
},
"peerDependencies": {
"next-auth": "~4.21.1"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^18.19.68",
"eslint": "^8.57.1",
"nuxt": "^3.14.1592",
"ofetch": "^1.4.1",
"oxlint": "^0.7.2",
"ts-essentials": "^9.4.2",
"typescript": "^5.5.4",
"vitepress": "^1.5.0",
"vitest": "^1.6.0",
"vue-tsc": "^2.1.10"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}