{ "name": "biggest", "type": "module", "version": "1.0.1", "description": "biggest is helps you safely compute very large numbers.", "source": "src/index.ts", "exports": { "types": "./dist/index.d.ts", "require": "./dist/index.cjs", "default": "./dist/index.modern.js" }, "main": "./dist/index.cjs", "module": "./dist/index.modern.js", "types": "./dist/index.d.ts", "scripts": { "build": "microbundle", "watch": "microbundle watch", "test": "jest", "release": "release-it" }, "keywords": [ "safe", "base", "big", "number", "math", "computation" ], "author": "hmmhmmhm", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.13", "husky": "^9.1.6", "jest": "^29.7.0", "lint-staged": "^15.2.10", "microbundle": "^0.15.1", "release-it": "^17.6.0", "ts-jest": "^29.2.5", "typescript": "^5.6.2" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "release-it": { "hooks": { "before:init": "pnpm run build" } }, "lint-staged": { "*.ts": [ "pnpm run lint", "prettier --write" ] } }