chore: polish for publishing

This commit is contained in:
Tiara Rodney 2026-03-15 03:20:59 +01:00
parent bac4a87119
commit e4db005b04
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
3 changed files with 207 additions and 18 deletions

View file

@ -1,10 +1,41 @@
{
"name": "byteb4rb1e/mime-todo",
"version": "1.0.0",
"author": "",
"license": "ISC",
"description": "MIME TODO issue tracker with Bugzilla sync",
"name": "@byteb4rb1e/mime-todo",
"version": "0.1.0",
"description": "CLI for the MIME TODO issue tracker specification with Bugzilla integration",
"author": "Tiara Rodney <me@tiararodney.com>",
"license": "CC-BY-ND-4.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/byteb4rb1e/mime-todo-cli.git"
},
"homepage": "https://bitbucket.org/byteb4rb1e/mime-todo-cli",
"bugs": {
"url": "https://bugs.code.tiararodney.com/buglist.cgi?component=CLI&product=MIME%20TODO"
},
"keywords": [
"todo",
"issue-tracker",
"mime",
"bugzilla",
"cli",
"gitflow"
],
"bin": {
"todo": "./bin/main.ts",
"bugzilla": "./bin/bugzilla.ts"
},
"main": "lib/file.ts",
"files": [
"bin/",
"lib/",
"README.md"
],
"scripts": {
"todo": "tsx bin/main.ts",
"bugzilla": "tsx bin/bugzilla.ts",
"test": "vitest run"
},
"dependencies": {
"ajv": "^8.17.1",
"mailparser": "^3.9.3",
@ -15,18 +46,7 @@
"@types/yargs": "^17.0.35",
"vitest": "^4.0.18"
},
"bin": {
"todo": "./bin/main.ts",
"bugzilla": "./bin/bugzilla.ts"
},
"scripts": {
"todo": "tsx bin/main.ts",
"bugzilla": "tsx bin/bugzilla.ts",
"test": "vitest run"
},
"main": "dist/main.js",
"directories": {
"lib": "lib",
"test": "tests"
"engines": {
"node": ">=18.0.0"
}
}