package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "playwright-core",
  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. "./package.json": "./package.json",
  25. "./lib/outofprocess": "./lib/outofprocess.js",
  26. "./lib/image_tools/stats": "./lib/image_tools/stats.js",
  27. "./lib/image_tools/compare": "./lib/image_tools/compare.js",
  28. "./lib/image_tools/imageChannel": "./lib/image_tools/imageChannel.js",
  29. "./lib/image_tools/colorUtils": "./lib/image_tools/colorUtils.js",
  30. "./lib/cli/cli": "./lib/cli/cli.js",
  31. "./lib/cli/program": "./lib/cli/program.js",
  32. "./lib/server/registry/index": "./lib/server/registry/index.js",
  33. "./lib/remote/playwrightServer": "./lib/remote/playwrightServer.js",
  34. "./lib/server": "./lib/server/index.js",
  35. "./lib/utils": "./lib/utils/index.js",
  36. "./lib/utilsBundle": "./lib/utilsBundle.js",
  37. "./lib/zipBundle": "./lib/zipBundle.js",
  38. "./types/protocol": "./types/protocol.d.ts",
  39. "./types/structs": "./types/structs.d.ts"
  40. },
  41. "bin": {
  42. "playwright-core": "cli.js"
  43. },
  44. "types": "types/types.d.ts"
  45. }