package.json 754 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@playwright/test",
  3. "version": "1.41.2",
  4. "description": "A high-level API to automate web browsers",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/microsoft/playwright.git"
  8. },
  9. "homepage": "https://playwright.dev",
  10. "engines": {
  11. "node": ">=16"
  12. },
  13. "author": {
  14. "name": "Microsoft Corporation"
  15. },
  16. "license": "Apache-2.0",
  17. "exports": {
  18. ".": {
  19. "types": "./index.d.ts",
  20. "import": "./index.mjs",
  21. "require": "./index.js",
  22. "default": "./index.js"
  23. },
  24. "./cli": "./cli.js",
  25. "./package.json": "./package.json",
  26. "./reporter": "./reporter.js"
  27. },
  28. "bin": {
  29. "playwright": "cli.js"
  30. },
  31. "scripts": {},
  32. "dependencies": {
  33. "playwright": "1.41.2"
  34. }
  35. }