kolchoz
Version:
Calculate your earnings in real-time based on your rate and country-specific working hours.
141 lines (140 loc) • 3.45 kB
JSON
{
"name": "kolchoz",
"version": "1.0.7",
"description": "Calculate your earnings in real-time based on your rate and country-specific working hours.",
"keywords": [
"earnings",
"real-time",
"salary",
"work-hours",
"rate-per-second",
"productivity",
"cli",
"time-tracking"
],
"bugs": {
"url": "https://github.com/kamdz/kolchoz/issues"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kamdz/kolchoz.git"
},
"license": "MIT",
"author": {
"name": "Kamil Dzwonkowski",
"email": "npm@kamdz.dev",
"url": "https://github.com/kamdz"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/cli.js",
"files": [
"dist",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"cli": "tsx bin/cli.ts",
"commit": "cz",
"dev": "tsx watch src/index.ts",
"dx": "npx @kamdz/dx",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint . --fix",
"lint-staged": "lint-staged",
"prepare": "husky",
"start": "tsx src/index.ts",
"test": "jest --coverage --passWithNoTests",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx,cjs,mjs,}": [
"eslint --fix"
],
"**/*.{ts,tsx,js,jsx,json,md,cjs,mjs,yml,yaml}": [
"prettier --write --ignore-unknown"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} \n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.19.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.4.3",
"log-update": "^6.1.0",
"prettier": "3.4.2",
"pretty-ms": "^9.2.0",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"packageManager": "yarn@4.5.1",
"dependencies": {
"commander": "^13.1.0",
"countries-list": "^3.1.1",
"dutyhours": "^1.0.6"
}
}