-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@workmate/nuxt-auth",
"version": "1.0.2",
"description": "Nuxt Auth Module: Auth module for Nuxt 3 apps",
"repository": "https://github.com/work-mate/nuxt-auth-module",
"license": "MIT",
"type": "module",
"keywords": [
"@workmate/nuxt-auth",
"Nuxt 3",
"authentication",
"authorization",
"local authentication",
"Github authentication",
"refresh tokens",
"access tokens",
"cookies",
"middleware",
"composables",
"fetch",
"authFetch",
"login",
"logout",
"refreshUser",
"refreshTokens",
"loggedIn",
"user",
"token",
"refreshToken",
"provider",
"tokenType",
"auth middleware",
"auth-guest middleware",
"global middleware",
"redirects",
"apiClient",
"token",
"cookiesNames",
"defaultProvider",
"GitHub",
"Google",
"Facebook",
"local",
"login",
"logout",
"user",
"refresh token",
"construction",
"package manager",
"npm",
"yarn",
"installation",
"setup",
"add to modules",
"configure auth",
"full list of module options",
"usage",
"composables",
"logging in",
"middlewares",
"route middleware",
"global middleware",
"example of nuxt.config.ts"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"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",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && npm publish --access public && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"defu": "^6.1.4",
"h3": "^1.11.1",
"jsonwebtoken": "^9.0.2",
"ofetch": "^1.3.4"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/module-builder": "^0.5.5",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.6",
"@semantic-release/npm": "^12.0.1",
"@types/jsonwebtoken": "^9",
"@types/node": "^20.12.4",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"nuxt": "^3.11.2",
"semantic-release": "^24.0.0",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]"
}