32 lines
654 B
JSON
32 lines
654 B
JSON
{
|
|
"name": "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"
|
|
}
|
|
}
|