-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.3 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@workmate/nuxt-auth",
"version": "2.0.1",
"description": "Authentication module for Nuxt 3 and Nuxt 4 with local credentials, GitHub, and Google OAuth — Zod schema validation, refresh tokens, cookie management, route middleware, and typed composables.",
"repository": "https://github.com/work-mate/nuxt-auth-module",
"license": "MIT",
"type": "module",
"keywords": [
"nuxt",
"nuxt3",
"nuxt4",
"nuxt-module",
"authentication",
"authorization",
"oauth",
"local-auth",
"github-auth",
"google-auth",
"refresh-token",
"access-token",
"jwt",
"cookies",
"zod",
"schema-validation",
"middleware",
"route-middleware",
"composables",
"useAuth",
"useAuthUser",
"useAuthFetch",
"auth-middleware",
"auth-guest-middleware",
"redirects",
"multi-provider",
"typescript"
],
"exports": {
".": {
"types": "./dist/module.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"files": [
"dist"
],
"vitest": {
"sequence": {
"concurrent": false
}
},
"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 .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^4.1.2",
"defu": "^6.1.4",
"h3": "^1.11.1",
"jsonwebtoken": "^9.0.2",
"ofetch": "^1.4.1",
"zod": "4.4.3"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^1.9.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.1.2",
"@nuxt/test-utils": "^3.19.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@types/jsonwebtoken": "^9",
"@types/node": "^24.6.0",
"changelogen": "^0.6.2",
"eslint": "^9.36.0",
"nuxt": "^4.1.2",
"semantic-release": "^24.2.9",
"vitest": "^3.2.4"
}
}