-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 903 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 903 Bytes
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
{
"name": "h3-basic-auth",
"version": "0.0.1",
"license": "MIT",
"repository": "manniL/h3-basic-auth",
"main": "./dist/index.mjs",
"exports": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "unbuild",
"prepack": "pnpm build",
"lint": "eslint --ext .ts src",
"release": "standard-version && git push --follow-tags && npm publish",
"dev": "nodemon"
},
"files": [
"dist"
],
"dependencies": {
"cookie": "^0.6.0",
"jsonwebtoken": "^9.0.2",
"ofetch": "^1.3.3",
"requrl": "^3.0.2",
"ufo": "^1.5.2"
},
"devDependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.11.30",
"eslint": "^8.57.0",
"express": "^4.18.3",
"h3": "^1.11.1",
"jiti": "^1.21.0",
"listhen": "^1.7.2",
"nodemon": "^3.1.0",
"standard-version": "^9.5.0",
"unbuild": "^2.0.0"
}
}