-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.31 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.31 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "segment-analytics-x-ray",
"version": "1.1.0",
"description": "Segment Analytics X-Ray is a tool that helps you analyze and debug Segment events being fired on web pages.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/agch-dev/segment-analytics-x-ray"
},
"scripts": {
"build": "vite build --config vite.config.chrome.ts",
"build:chrome": "vite build --config vite.config.chrome.ts",
"build:firefox": "vite build --config vite.config.firefox.ts",
"dev": "nodemon --config nodemon.chrome.json",
"dev:chrome": "nodemon --config nodemon.chrome.json",
"dev:firefox": "nodemon --config nodemon.firefox.json",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"knip": "knip",
"knip:production": "knip --production",
"prepare": "husky install"
},
"type": "module",
"engines": {
"node": "^20.11.0 || >=21.2.0"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@hugeicons/core-free-icons": "^3.3.0",
"@hugeicons/react": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-switch": "^1.2.6",
"@tanstack/react-virtual": "^3.13.18",
"@uiw/react-json-view": "^2.0.0-alpha.39",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.4.0",
"webextension-polyfill": "^0.12.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.3.0",
"@eslint/js": "^9.32.0",
"@tailwindcss/vite": "^4.1.18",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.1.11",
"@types/node": "^24.9.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/webextension-polyfill": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-better-tailwindcss": "^3.8.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-sonarjs": "^3.0.5",
"fs-extra": "^11.3.3",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"knip": "^5.80.2",
"lint-staged": "^15.2.11",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.16",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss}": [
"prettier --write"
]
}
}