forked from monsat/nuxt-basic-auth-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "nuxt-basic-authentication-module",
"version": "0.2.1",
"description": "Basic Authentication Module for Nuxt 3",
"keywords": [
"nuxt",
"module",
"basic auth",
"authentication"
],
"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",
"test": "vitest run test",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monsat/nuxt-basic-auth-module.git"
},
"author": "monsat",
"dependencies": {
"@nuxt/kit": "^3.0.0-rc.6",
"basic-auth": "^2.0.1"
},
"devDependencies": {
"@nuxt/module-builder": "latest",
"@nuxt/test-utils-edge": "^3.0.0-rc.6-27651720.5dc864d",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "latest",
"nuxt": "^3.0.0-rc.6",
"playwright": "^1.24.2",
"vitest": "^0.19.1"
}
}