service-testing-bootstrap/package.json
autocommit 94dcd09c47
Some checks failed
Build and Publish / build-and-publish (push) Failing after 46s
deps-upgrade(root): ⬆️ Update all project dependencies to latest compatible versions
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 04:36:36 -07:00

42 lines
929 B
JSON

{
"name": "@lilith/service-testing-bootstrap",
"version": "1.0.0",
"description": "Testing bootstrap with service orchestration, ports configuration, and Playwright integration",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"yaml": "^2.3.0"
},
"peerDependencies": {
"@playwright/test": ">=1.40.0"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"tsup": "^8.5.1"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}