-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "request-signals",
"version": "0.11.0",
"description": "Unified client signal layer — parse structured data from HTTP requests: client IP, user agent browser and OS, bot detection, language and locale, cookies, etc.",
"keywords": [
"accept-language",
"bot-detection",
"client-ip",
"client-signals",
"content-type",
"header-parser",
"request-signals",
"sec-ch-ua",
"user-agent"
],
"bugs": {
"url": "https://github.com/dendrell/request-signals/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dendrell/request-signals.git"
},
"files": [
"dist/",
"README.md"
],
"type": "module",
"exports": {
".": {
"node": {
"types": "./dist/index.d.mts",
"module-sync": "./dist/index.mjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"./types": {
"node": {
"types": "./dist/types.d.mts"
},
"import": {
"types": "./dist/types.d.mts"
}
}
},
"scripts": {
"build": "tsdown",
"postbuild": "pnpm dlx publint",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "pnpm typecheck",
"lint:circular": "pnpm dlx madge --circular src/index.ts src/types.ts",
"prepublishOnly": "pnpm build",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"typecheck": "tsc"
},
"dependencies": {
"bowser": "^2.14.1",
"isbot": "^5.1.37"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"oxfmt": "^0.44.0",
"publint": "^0.3.18",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=22.0.0"
}
}