-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.88 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.88 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
{
"name": "browser-wd-tracer",
"version": "0.1.0",
"description": "UI-tool to explore raw webdriver logs",
"type": "module",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"dev:example": "vite --open '/?logUrl=http://localhost:3000/__examples__/webdriver.txt'",
"build": "tsc && vite build",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"lint": "eslint src/**/*.{ts,tsx}",
"lint:fix": "eslint src/**/*.{ts,tsx} --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"webdriver",
"logs",
"viewer",
"parser",
"browser",
"tracer"
],
"license": "MIT",
"dependencies": {
"@microlink/react-json-view": "^1.27.1",
"@tanstack/react-virtual": "^3.13.18",
"@visx/axis": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"antd": "^6.3.0",
"antd-style": "^4.1.0",
"bytes": "^3.1.2",
"eventemitter3": "^5.0.4",
"ms": "^2.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^4.6.2",
"valtio": "^2.1.2",
"valtio-reactive": "^0.2.0"
},
"devDependencies": {
"@types/bytes": "^3.1.5",
"@types/ms": "^2.1.0",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.20.0",
"vite": "^6.0.5",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20.0.0"
},
"private": true
}