UNPKG

boosted-calc

Version:

A powerful terminal-based calculator with unit conversions, currency support, and more

77 lines (76 loc) 1.74 kB
{ "name": "boosted-calc", "version": "1.5.3", "description": "A powerful terminal-based calculator with unit conversions, currency support, and more", "keywords": [ "calculator", "cli", "command-line", "currency", "financial", "ink", "math", "terminal", "tui", "typescript", "unit-conversion" ], "author": "pyboosted", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/pyboosted/calc.git" }, "homepage": "https://github.com/pyboosted/calc#readme", "bugs": { "url": "https://github.com/pyboosted/calc/issues" }, "type": "module", "bin": { "calc": "dist/cli.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "scripts": { "build": "tsup", "start": "bun run src/cli.tsx", "dev": "bun run --watch src/cli.tsx", "update-currencies": "bun run src/cli.tsx --update", "test": "bun test", "test:watch": "bun test --watch", "typecheck": "tsc --noEmit", "format": "ultracite format --unsafe", "lint": "ultracite lint", "prepublishOnly": "bun run build", "prepare": "husky" }, "devDependencies": { "@biomejs/biome": "2.0.5", "@types/bun": "latest", "@types/react": "^19.1.8", "husky": "^9.1.7", "react-devtools-core": "^6.1.3", "tsup": "^8.5.0", "ultracite": "^5.0.20" }, "peerDependencies": { "typescript": "^5" }, "dependencies": { "@types/decimal.js": "^7.4.3", "chalk": "^5.4.1", "clipboardy": "^4.0.0", "date-fns": "^4.1.0", "date-fns-tz": "^3.2.0", "decimal.js": "^10.5.0", "ink": "^6.0.0", "react": "^19.1.0", "yaml": "^2.8.0" } }