Some checks failed
Build and Publish / build-and-publish (push) Failing after 46s
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
42 lines
929 B
JSON
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
|
|
}
|
|
}
|