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

38 lines
838 B
JSON
Raw Normal View History

{
"name": "@playwright/experimental-ct-core",
2023-09-12 03:16:16 +02:00
"version": "1.39.0-next",
"description": "Playwright Component Testing Helpers",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/playwright.git"
},
"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-09-12 03:16:16 +02:00
"playwright-core": "1.39.0-next",
2023-10-03 23:59:13 +02:00
"vite": "^4.4.10",
2023-09-12 03:16:16 +02:00
"playwright": "1.39.0-next"
},
"bin": {
"playwright": "./cli.js"
}
}