mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-06 03:16:17 +03:00
10e7654fd9
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
888 B
JSON
42 lines
888 B
JSON
{
|
|
"name": "@playwright/experimental-ct-solid",
|
|
"version": "1.39.0-next",
|
|
"description": "Playwright Component Testing for Solid",
|
|
"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",
|
|
"vite-plugin-solid": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"solid-js": "^1.7.0"
|
|
},
|
|
"bin": {
|
|
"playwright": "./cli.js"
|
|
}
|
|
}
|