Files
CreaBook/node_modules/better-result/package.json
2026-04-05 03:08:53 +02:00

62 lines
1.4 KiB
JSON

{
"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 <dillon.mulroy@gmail.com> (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"
}
}