platform-tooling/run/node_modules/@lilith/terminal-formatting/package.json
Quinn Ftw 85621b287e chore: snapshot before monorepo consolidation
Capture current working state before converting platform-tooling
into a submodule of the lilith-platform monorepo.
2026-01-29 07:04:39 -08:00

62 lines
1.2 KiB
JSON

{
"name": "@lilith/terminal-formatting",
"version": "1.0.0",
"description": "Terminal formatting and display utilities",
"author": "Lilith Platform",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsc --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"cli",
"terminal",
"chalk",
"ora",
"table",
"console"
],
"dependencies": {
"chalk": "^5.3.0",
"ora": "^8.0.1",
"cli-table3": "^0.6.5",
"strip-ansi": "^7.1.0",
"string-width": "^7.2.0",
"boxen": "^8.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.5.3",
"tsup": "^8.5.1"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md"
],
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.nasty.sh/lilith/terminal-formatting.git"
},
"type": "module"
}