Files
trezor-suite/packages/eslint/package.json
Jan Václavík bff400ca26 feat(analytics): Add event name validation and update ESLint rules
- Introduced a new validation function for analytics event names to ensure proper formatting and allowed domains.
- Updated ESLint rules to utilize the new validation function.
- Fixed formatting issues in the App component for better readability.
- Removed redundant dependency from package.json.
2026-03-05 16:42:51 +01:00

27 lines
809 B
JSON

{
"name": "@trezor/eslint",
"version": "1.0.0",
"license": "See LICENSE.md in repo root",
"private": true,
"sideEffects": false,
"main": "src/index.mjs",
"scripts": {
"depcheck": "yarn g:depcheck",
"type-check": "yarn g:tsc --build"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.12.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-local-rules": "^3.0.2",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.2.0",
"typescript-eslint": "^8.54.0"
}
}