bookr-cli
Version:
A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name
92 lines (91 loc) • 2.66 kB
JSON
{
"name": "bookr-cli",
"version": "0.0.21",
"type": "module",
"description": "A terminal-based CLI tool to book time in Jira using the Tempo plugin by parsing your current Git branch name",
"main": "dist/cli.js",
"bin": {
"bookr": "dist/cli.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"dev": "tsx watch src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"postbuild": "chmod +x dist/cli.js",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:integration": "vitest run test/integration/",
"test:integration:watch": "vitest test/integration/ --watch",
"test:integration:jira": "vitest run test/integration/jira-connection.test.ts",
"test:integration:worklog": "vitest run test/integration/worklog.test.ts",
"test:integration:issues": "vitest run test/integration/issues.test.ts",
"test:integration:update": "vitest run test/integration/update-checker.test.ts",
"test:integration:extraction": "vitest run test/integration/issue-extraction.test.ts",
"biome:lint": "biome lint .",
"biome:check": "biome check .",
"biome:format": "biome format . --write",
"biome:fix": "biome check . --write",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"release:patch": "npm version patch && git push && git push --tags",
"release:minor": "npm version minor && git push && git push --tags",
"release:major": "npm version major && git push && git push --tags"
},
"keywords": [
"cli",
"tempo",
"jira",
"time-tracking",
"git",
"ink",
"typescript",
"productivity",
"worklog",
"timesheet"
],
"author": "Onno Klein Hofmeijer",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Onnokh/bookr.git"
},
"bugs": {
"url": "https://github.com/Onnokh/bookr/issues"
},
"homepage": "https://github.com/Onnokh/bookr#readme",
"dependencies": {
"better-fetch": "^1.0.0",
"env-paths": "^3.0.0",
"ink": "^4.4.1",
"inquirer": "^12.6.3",
"meow": "^13.1.1",
"react": "^18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@vitest/coverage-v8": "^1.2.1",
"@vitest/ui": "^1.2.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"imports": {
"@/*": "./src/*"
}
}