playwright-e2e-docker/package.json
Lilith fbc8e5772e 🔧 migrate to @lilith namespace, remove gitlab-ci.yml
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 01:35:26 -08:00

83 lines
1.9 KiB
JSON

{
"name": "@lilith/playwright-e2e-docker",
"version": "2.0.0",
"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": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./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": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm build"
},
"dependencies": {},
"peerDependencies": {
"@playwright/test": ">=1.50.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"@lilith/configs": "workspace:*"
},
"keywords": [
"playwright",
"e2e",
"docker",
"electron",
"testing",
"web",
"gitlab-ci",
"device-presets",
"auth-setup",
"cluster-mode"
],
"repository": {
"type": "git",
"url": "http://forge.nasty.sh/lilith/playwright-e2e-docker.git"
},
"homepage": "http://forge.nasty.sh/lilith/playwright-e2e-docker#readme",
"bugs": {
"url": "http://forge.nasty.sh/lilith/playwright-e2e-docker/-/issues"
},
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me"
},
"license": "MIT",
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}