terminal-formatting/package.json
autocommit 079735e4da
Some checks failed
Build and Publish / build-and-publish (push) Failing after 50s
deps-upgrade(dependencies): ⬆️ Update npm dependencies to latest stable versions for security, bug fixes, and new features
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:08:58 -07: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.black.lan/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.black.lan/lilith/terminal-formatting.git"
},
"type": "module"
}