-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 995 Bytes
/
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
{
"name": "@bsnext/fastify-bowser",
"version": "1.2.0",
"description": "A plugin for Fastify that adds the 'request.useragent' property to get header 'user-agent' parsed data.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc --project tsconfig.json",
"watch": "tsc --watch",
"test": "node dist/test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsnext/Fastify-Bowser"
},
"keywords": [
"fastify",
"plugin",
"useragent",
"ua",
"user",
"agent",
"parser",
"bowser"
],
"bugs": {
"url": "https://github.com/bsnext/Fastify-Bowser/issues"
},
"homepage": "https://github.com/bsnext/Fastify-Bowser#readme",
"author": "SalwadoR",
"type": "commonjs",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.5",
"fastify": "^4.14.0",
"typescript": "^5.6.3",
"uvu": "^0.5.6"
},
"dependencies": {
"bowser": "^2.11.0",
"fastify-plugin": "^5.0.1"
}
}