84 lines
2 KiB
JSON
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.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
|
|
}
|
|
}
|