-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"name": "nuxt-simple-auth",
"version": "1.7.4",
"description": "⚠️ Deprecated. Please use nuxt-umbu instead.",
"repository": "https://github.com/4sllan/nuxt-simple-auth",
"author": "Aslan Gama <@4slan>",
"keywords": [
"Nuxt 3 authentication",
"Laravel Passport integration",
"Nuxt authentication module",
"Server-side authentication Nuxt",
"Nuxt 3 2FA support",
"Secure cookies authentication",
"Nuxt httpOnly cookies",
"OAuth authentication Nuxt"
],
"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",
"typecheck": "nuxi prepare playground && tsc --noEmit",
"dev": "nuxi dev playground",
"dev:prepare": "nuxt-module-build --stub",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.2.0",
"@nuxt/module-builder": "latest",
"@nuxt/schema": "^3.15.4",
"@nuxt/test-utils": "^3.17.2",
"@types/lodash.kebabcase": "^4.1.9",
"eslint": "^9.22.0",
"nuxt": "^3.15.4",
"typescript": "^5.7.3",
"vitest": "^3.0.8"
},
"dependencies": {
"@nuxt/kit": "^3.15.4",
"@vueuse/core": "^12.7.0",
"defu": "^6.1.4",
"h3": "^1.15.0",
"lodash.kebabcase": "^4.1.1",
"ofetch": "^1.4.1",
"unstorage": "^1.15.0"
}
}