43 lines
917 B
JSON
43 lines
917 B
JSON
{
|
|
"name": "@lilith/lix-workspace",
|
|
"version": "1.0.0",
|
|
"description": "Workspace management CLI for Lilith ecosystem - exports lixworkspace command",
|
|
"type": "module",
|
|
"bin": {
|
|
"lixworkspace": "./bin/lixworkspace.js",
|
|
"lixws": "./bin/lixworkspace.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/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
|
|
}
|
|
}
|