123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "playwright",
- "version": "1.36.2",
- "description": "A high-level API to automate web browsers",
- "repository": "github:Microsoft/playwright",
- "homepage": "https://playwright.dev",
- "engines": {
- "node": ">=16"
- },
- "author": {
- "name": "Microsoft Corporation"
- },
- "license": "Apache-2.0",
- "exports": {
- ".": {
- "types": "./index.d.ts",
- "import": "./index.mjs",
- "require": "./index.js",
- "default": "./index.js"
- },
- "./cli": "./cli.js",
- "./package.json": "./package.json"
- },
- "bin": {
- "playwright": "./cli.js"
- },
- "scripts": {
- "install": "node install.js"
- },
- "dependencies": {
- "playwright-core": "1.36.2"
- }
- }
|