-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "nextjs-basic-auth-middleware",
"version": "3.1.1",
"author": "Boris Besemer",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"module": "dist/index.js",
"homepage": "https://github.com/labd/nextjs-basic-auth-middleware#readme",
"repository": {
"type": "git",
"url": "https://github.com/labd/nextjs-basic-auth-middleware"
},
"license": "MIT",
"main": "dist/index.cjs",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"start": "tsdown --watch",
"build": "tsdown",
"format": "biome format --write .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"tsc": "tsc --noEmit -p .",
"publish:ci": "pnpm build && pnpm changeset publish"
},
"peerDependencies": {
"next": ">=13.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@changesets/cli": "2.30.0",
"@types/node": "22.15.3",
"@vitest/coverage-v8": "3.2.3",
"next": "15.5.15",
"tsdown": "0.12.5",
"typescript": "6.0.2",
"vitest": "3.2.3"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}