mime-todo-cli/package.json
2026-03-15 03:07:48 +01:00

32 lines
665 B
JSON

{
"name": "byteb4rb1e/mime-todo",
"version": "1.0.0",
"author": "",
"license": "ISC",
"description": "MIME TODO issue tracker with Bugzilla sync",
"type": "module",
"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"
},
"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"
}
}