playwright-e2e-docker/package.json
Lilith 1ca18b0e40 deps-upgrade(deps): ⬆️ Update dependencies to latest versions for bug fixes and improvements
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 19:26:43 -07:00

84 lines
2 KiB
JSON

{
"name": "@lilith/playwright-e2e-docker",
"version": "2.0.2",
"description": "Reusable Playwright E2E testing infrastructure with Docker support for Electron and web apps. Features device presets, auth setup, cluster mode, and GitLab CI templates.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./electron": {
"import": "./dist/electron.js",
"types": "./dist/electron.d.ts"
},
"./web": {
"import": "./dist/web-fixture.js",
"types": "./dist/web-fixture.d.ts"
},
"./helpers": {
"import": "./dist/helpers.js",
"types": "./dist/helpers.d.ts"
},
"./config": {
"import": "./dist/config.js",
"types": "./dist/config.d.ts"
}
},
"files": [
"dist",
"templates",
"scripts"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@playwright/test": ">=1.50.0"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@playwright/test": "^1.57.0",
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"keywords": [
"playwright",
"e2e",
"docker",
"electron",
"testing",
"web",
"gitlab-ci",
"device-presets",
"auth-setup",
"cluster-mode"
],
"repository": {
"type": "git",
"url": "http://forge.black.local/lilith/playwright-e2e-docker.git"
},
"homepage": "http://forge.black.local/lilith/playwright-e2e-docker#readme",
"bugs": {
"url": "http://forge.black.local/lilith/playwright-e2e-docker/-/issues"
},
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me"
},
"license": "MIT",
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}