-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.43 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
48
49
50
{
"name": "browser-version-detection",
"version": "3.1.0",
"description": "Browser detection using the user agent, returns the name and version of the browser",
"main": "lib/browser-detection.js",
"types": "lib/browser-detection.d.ts",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint src/**/* --ext .ts",
"test": "vitest --coverage --run",
"test:watch": "vitest --coverage",
"doc": "typedoc src/browser-detection.ts --basePath /browser-detection/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pure-js/browser-detection.git"
},
"keywords": [
"browser detection",
"browser version",
"rendering engine detection"
],
"author": "pure-js",
"license": "MIT",
"bugs": {
"url": "https://github.com/pure-js/browser-detection/issues"
},
"homepage": "https://github.com/pure-js/browser-detection#readme",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": ">=6.0.0",
"@typescript-eslint/parser": ">=6.0.0",
"@vitest/coverage-v8": "^0.34.1",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"prettier": "3.0.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
}
}