package.json 1.4 KB

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