package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "playwright",
  3. "version": "1.55.0",
  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": ">=18"
  12. },
  13. "main": "index.js",
  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/common/configLoader": "./lib/common/configLoader.js",
  23. "./lib/fsWatcher": "./lib/fsWatcher.js",
  24. "./lib/mcp": "./lib/mcp/exports.js",
  25. "./lib/program": "./lib/program.js",
  26. "./lib/reporters/base": "./lib/reporters/base.js",
  27. "./lib/reporters/list": "./lib/reporters/list.js",
  28. "./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
  29. "./lib/transform/compilationCache": "./lib/transform/compilationCache.js",
  30. "./lib/transform/esmLoader": "./lib/transform/esmLoader.js",
  31. "./lib/transform/transform": "./lib/transform/transform.js",
  32. "./lib/internalsForTest": "./lib/internalsForTest.js",
  33. "./lib/plugins": "./lib/plugins/index.js",
  34. "./lib/runner/testRunner": "./lib/runner/testRunner.js",
  35. "./jsx-runtime": {
  36. "import": "./jsx-runtime.mjs",
  37. "require": "./jsx-runtime.js",
  38. "default": "./jsx-runtime.js"
  39. },
  40. "./lib/util": "./lib/util.js",
  41. "./lib/utilsBundle": "./lib/utilsBundle.js",
  42. "./types/test": {
  43. "types": "./types/test.d.ts"
  44. },
  45. "./types/testReporter": {
  46. "types": "./types/testReporter.d.ts"
  47. },
  48. "./test": {
  49. "types": "./test.d.ts",
  50. "import": "./test.mjs",
  51. "require": "./test.js",
  52. "default": "./test.js"
  53. }
  54. },
  55. "bin": {
  56. "playwright": "cli.js"
  57. },
  58. "author": {
  59. "name": "Microsoft Corporation"
  60. },
  61. "license": "Apache-2.0",
  62. "dependencies": {
  63. "playwright-core": "1.55.0"
  64. },
  65. "optionalDependencies": {
  66. "fsevents": "2.3.2"
  67. }
  68. }