-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "client-hints",
"version": "2.2.1",
"description": "🕵️♂️ Parse client hints headers and provide a convenient API to access device information and user preferences",
"keywords": [
"client-hints",
"headers",
"sec-ch",
"🕵️♂️"
],
"author": "omrilotan <hi@omrilotan.com> (https://omrilotan.com/)",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "git@github.com:omrilotan/client-hints.git"
},
"files": [
"index.*"
],
"type": "module",
"main": "index.cjs",
"module": "index.mjs",
"exports": {
".": {
"require": "./index.cjs",
"import": "./index.mjs"
}
},
"types": "index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "scripts/build.sh",
"test": "jest",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/jest": "^29.5.5",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}