package.json 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@d8d/e2e-test-utils",
  3. "version": "1.0.0",
  4. "description": "E2E testing utilities for Radix UI components",
  5. "type": "module",
  6. "main": "src/index.ts",
  7. "types": "src/index.ts",
  8. "exports": {
  9. ".": {
  10. "import": "./src/index.ts",
  11. "require": "./src/index.ts"
  12. }
  13. },
  14. "files": [
  15. "src"
  16. ],
  17. "scripts": {
  18. "build": "tsc",
  19. "dev": "tsc --watch",
  20. "test": "vitest",
  21. "test:unit": "vitest run",
  22. "test:coverage": "vitest --coverage",
  23. "typecheck": "tsc --noEmit",
  24. "lint": "eslint .",
  25. "lint:fix": "eslint . --fix"
  26. },
  27. "peerDependencies": {
  28. "@playwright/test": "^1.40.0"
  29. },
  30. "devDependencies": {
  31. "@eslint/js": "^9.18.0",
  32. "@typescript-eslint/eslint-plugin": "^8.21.0",
  33. "@typescript-eslint/parser": "^8.21.0",
  34. "globals": "^15.14.0",
  35. "typescript": "^5.8.3",
  36. "vitest": "^3.2.4",
  37. "@vitest/coverage-v8": "^3.2.4"
  38. },
  39. "keywords": [
  40. "e2e",
  41. "testing",
  42. "playwright",
  43. "radix-ui",
  44. "test-utilities"
  45. ]
  46. }