mime-todo-cli/package.json
2026-03-15 03:20:59 +01:00

52 lines
1.1 KiB
JSON

{
"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",
"tsx": "^3.7.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/yargs": "^17.0.35",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
}
}