-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"name": "@readme/ua-platformer",
"version": "2.1.0",
"description": "Library to determine the platform of a given User Agent header.",
"license": "MIT",
"author": "ReadMe <support@readme.io> (https://readme.com)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/readmeio/ua-platformer.git"
},
"bugs": {
"url": "https://github.com/readmeio/ua-platformer/issues"
},
"keywords": [
"user agent"
],
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "npm run prettier:write && npx biome check --write",
"lint": "npm run lint:ts && npm run prettier",
"lint:ts": "biome check",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"prettier": "prettier --check .",
"prettier:write": "prettier --check --write .",
"test": "vitest run --coverage"
},
"dependencies": {
"ua-parser-js": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@readme/standards": "^2.2.0",
"@types/node": "^25.0.3",
"@types/ua-parser-js": "^0.7.38",
"@vitest/coverage-v8": "^4.0.9",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^4.0.9"
},
"prettier": "@readme/standards/prettier"
}