package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "playwright",
  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. "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. "./cli": "./cli.js",
  22. "./package.json": "./package.json",
  23. "./lib/cli": "./lib/cli.js",
  24. "./lib/transform/babelBundle": "./lib/transform/babelBundle.js",
  25. "./lib/transform/compilationCache": "./lib/transform/compilationCache.js",
  26. "./lib/transform/esmLoader": "./lib/transform/esmLoader.js",
  27. "./lib/transform/transform": "./lib/transform/transform.js",
  28. "./lib/internalsForTest": "./lib/internalsForTest.js",
  29. "./lib/plugins": "./lib/plugins/index.js",
  30. "./jsx-runtime": {
  31. "import": "./jsx-runtime.mjs",
  32. "require": "./jsx-runtime.js",
  33. "default": "./jsx-runtime.js"
  34. },
  35. "./lib/util": "./lib/util.js",
  36. "./lib/utilsBundle": "./lib/utilsBundle.js",
  37. "./types/test": {
  38. "types": "./types/test.d.ts"
  39. },
  40. "./types/testReporter": {
  41. "types": "./types/testReporter.d.ts"
  42. },
  43. "./test": {
  44. "types": "./test.d.ts",
  45. "import": "./test.mjs",
  46. "require": "./test.js",
  47. "default": "./test.js"
  48. }
  49. },
  50. "bin": {
  51. "playwright": "cli.js"
  52. },
  53. "author": {
  54. "name": "Microsoft Corporation"
  55. },
  56. "license": "Apache-2.0",
  57. "dependencies": {
  58. "playwright-core": "1.41.2"
  59. },
  60. "optionalDependencies": {
  61. "fsevents": "2.3.2"
  62. }
  63. }