terminal-cli-parser/package.json
autocommit e49e838c87
Some checks failed
Build and Publish / build-and-publish (push) Failing after 1m34s
deps-upgrade(deps): ⬆️ Update dependencies to latest stable versions for bug fixes and new features
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-06-10 21:07:21 -07:00

55 lines
1.1 KiB
JSON

{
"name": "@lilith/terminal-cli-parser",
"version": "1.0.0",
"description": "CLI argument parsing 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",
"parser",
"commander",
"arguments"
],
"dependencies": {
"commander": "^11.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-cli-parser.git"
},
"type": "module"
}