lix/test/package.json
2026-06-10 21:13:00 -07:00

46 lines
963 B
JSON

{
"name": "@lilith/lix-test",
"version": "1.0.0",
"description": "Unified test CLI for Lilith ecosystem - exports lixtest command",
"type": "module",
"bin": {
"lixtest": "./bin/lixtest.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./runners": {
"types": "./dist/runners/index.d.ts",
"import": "./dist/runners/index.js"
}
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@lilith/lix-core": "^1.0.0",
"@lilith/lix-cli": "^1.0.0",
"commander": "^12.1.0",
"execa": "^9.5.2"
},
"devDependencies": {
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}