-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.04 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
{
"name": "nuxt-simple-auth",
"version": "1.4.5",
"description": "Authentication module simple for Nuxt.js",
"repository": "https://github.com/4sllan/nuxt-simple-auth",
"author": "Aslan Gama <@4slan>",
"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"
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.4",
"@nuxt/schema": "^3.8.2",
"nuxt": "^3.8.2",
"ofetch": "^1.3.3",
"typescript": "^5.3.3"
},
"dependencies": {
"@nuxt/kit": "^3.8.2",
"@vueuse/core": "^10.7.0",
"defu": "^6.1.4",
"h3": "^1.9.0",
"pinia": "^2.1.7",
"requrl": "^3.0.2"
}
}