{ "name": "better-result", "version": "2.7.0", "description": "Lightweight Result type with generator-based composition", "keywords": [ "error-handling", "functional", "generator", "result", "typescript" ], "homepage": "https://github.com/dmmulroy/better-result#readme", "bugs": { "url": "https://github.com/dmmulroy/better-result/issues" }, "license": "MIT", "author": "Dillon Mulroy (https://github.com/dmmulroy)", "repository": { "type": "git", "url": "https://github.com/dmmulroy/better-result" }, "bin": { "better-result": "./bin/cli.mjs" }, "files": [ "bin", "dist", "skills", "src" ], "type": "module", "main": "./dist/index.mjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { ".": { "types": "./dist/index.d.mts", "import": "./dist/index.mjs", "default": "./dist/index.mjs" } }, "scripts": { "build": "tsdown", "prepublishOnly": "bun run build", "test": "bun test src/", "check": "tsc --noEmit", "lint": "oxlint .", "fmt": "oxfmt .", "fmt:check": "oxfmt --check ." }, "dependencies": { "@clack/prompts": "^0.11.0" }, "devDependencies": { "@types/bun": "latest", "oxfmt": "^0.23.0", "oxlint": "^1.38.0", "tsdown": "^0.19.0-beta.5", "typescript": "^5.0.0" } }