playwright/packages/playwright-ct-core/package.json

35 lines
791 B
JSON
Raw Normal View History

{
"name": "@playwright/experimental-ct-core",
2023-08-09 11:46:29 +03:00
"version": "1.38.0-next",
"description": "Playwright Component Testing Helpers",
"repository": "github:Microsoft/playwright",
"homepage": "https://playwright.dev",
"engines": {
"node": ">=16"
},
"author": {
"name": "Microsoft Corporation"
},
"license": "Apache-2.0",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./cli": "./cli.js",
"./lib/mount": "./lib/mount.js",
"./lib/vitePlugin": "./lib/vitePlugin.js",
"./types/component": {
"types": "./types/component.d.ts"
}
},
"dependencies": {
2023-08-09 11:46:29 +03:00
"playwright-core": "1.38.0-next",
"vite": "^4.3.9",
2023-08-09 11:46:29 +03:00
"@playwright/test": "1.38.0-next"
},
"bin": {
"playwright": "./cli.js"
}
}