package.json 700 B

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