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

36 lines
741 B
JSON

{
"name": "@lilith/lix-cli",
"version": "1.0.0",
"description": "Shared CLI utilities for lix tooling",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"ora": "^8.1.1"
},
"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
}
}