retry/package.json
Lilith da72804a75
Some checks failed
Build and Publish / build-and-publish (push) Failing after 54s
deps-upgrade(root): ⬆️ Update dependencies to latest stable versions for security fixes and compatibility
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-08 19:26:49 -07:00

41 lines
905 B
JSON

{
"name": "@lilith/retry",
"version": "1.0.0",
"description": "Retry utility with exponential backoff, jitter, and decorators",
"author": "Lilith Platform",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"registry": "http://forge.black.local/api/packages/lilith/npm/"
},
"devDependencies": {
"@types/node": "^20.19.28",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}