forked from labd/nextjs-basic-auth-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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
50
51
52
53
54
55
56
{
"name": "nextjs-basic-auth-middleware",
"version": "3.1.0",
"author": "Boris Besemer",
"module": "dist/index.js",
"homepage": "https://github.com/labd/nextjs-basic-auth-middleware#readme",
"repository": {
"type": "git",
"url": "git+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.js"
}
},
"type": "module",
"scripts": {
"start": "tsup src/index.ts --watch",
"build": "tsup",
"lint": "eslint src/ --ext ts",
"test": "jest",
"tsc": "tsc --noEmit -p ."
},
"peerDependencies": {
"next": ">=13.1"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@edge-runtime/jest-environment": "2.0.8",
"@labdigital/eslint-config-node": "0.0.5",
"@types/jest": "29.4.0",
"@types/node": "18.14.6",
"eslint": "8.35.0",
"husky": "8.0.3",
"jest": "29.5.0",
"next": "13.2.3",
"node-mocks-http": "1.12.1",
"tslib": "2.5.0",
"tsup": "6.6.3",
"typescript": "4.9.5"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}