-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
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
{
"name": "random-user-agent",
"version": "0.0.0",
"type": "module",
"author": {
"name": "paramtamtam",
"url": "https://github.com/tarampampam"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tarampampam/random-user-agent.git"
},
"bugs": {
"url": "https://github.com/tarampampam/random-user-agent/issues"
},
"homepage": "https://github.com/tarampampam/random-user-agent#readme",
"scripts": {
"fmt": "prettier --write ./src ./*.ts && npm run lint:es -- --fix",
"lint": "npm run lint:ts && npm run lint:es",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint ./src/**/*.{ts,tsx}",
"test": "vitest --run --logHeapUsage --dir ./src",
"test:cover": "vitest --run --dir ./src --coverage --coverage.provider=v8 --coverage.reporter=clover --coverage.reporter=text-summary",
"watch": "vite build --watch --minify=false",
"build": "tsc --noEmit && vite build"
},
"dependencies": {
"@ungap/structured-clone": "^1.2.1",
"ipaddr.js": "^2.2.0",
"punycode": "^2.3.1",
"randexp": "^0.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.1",
"ua-parser-js": "^2.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/archiver": "^6.0.3",
"@types/chrome": "^0.0.287",
"@types/node": "^22.10.3",
"@types/randomstring": "^1.3.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^18.3.1",
"@types/ua-parser-js": "^0.7.39",
"@types/ungap__structured-clone": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^1.6.0",
"archiver": "^7.0.1",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jest-environment-jsdom": "^29.7.0",
"npm": "^10.9.1",
"prettier": "^3.4.2",
"randomstring": "^1.3.0",
"typescript": "^5.7.2",
"user-agent-data-types": "^0.4.2",
"vite": "^6.0.6",
"vitest": "^1.4.0"
},
"volta": {
"node": "22"
},
"engines": {
"node": ">=22"
}
}