As per
https://github.com/microsoft/playwright/actions/runs/6425074868/job/17446981722#step:7:168.
e.g. here:
2e4b4ad8be/package.json (L28-L31)
docs:
https://docs.npmjs.com/cli/v10/configuring-npm/package-json#repository
https://github.com/microsoft/playwright/issues/22555
42 lines
884 B
JSON
42 lines
884 B
JSON
{
|
|
"name": "@playwright/experimental-ct-vue2",
|
|
"version": "1.39.0-next",
|
|
"description": "Playwright Component Testing for Vue2",
|
|
"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"
|
|
},
|
|
"./register": {
|
|
"types": "./register.d.ts",
|
|
"default": "./register.mjs"
|
|
},
|
|
"./hooks": {
|
|
"types": "./hooks.d.ts",
|
|
"default": "./hooks.mjs"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@playwright/experimental-ct-core": "1.39.0-next",
|
|
"@vitejs/plugin-vue2": "^2.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"vue": "^2.7.14"
|
|
},
|
|
"bin": {
|
|
"playwright": "./cli.js"
|
|
}
|
|
}
|