safe-timeouts 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,11 +2,13 @@
2
2
 
3
3
  **Deadline-based timeouts for async Node.js code with AbortSignal support.**
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/safe-timeout)](https://www.npmjs.com/package/safe-timeout)
6
- [![npm downloads](https://img.shields.io/npm/dm/safe-timeout)](https://www.npmjs.com/package/safe-timeout)
7
- [![license](https://img.shields.io/npm/l/safe-timeout)](./LICENSE)
8
- [![types](https://img.shields.io/npm/types/safe-timeout)](https://www.npmjs.com/package/safe-timeout)
9
- [![node](https://img.shields.io/node/v/safe-timeout)](https://nodejs.org)
5
+ ![NPM Version](https://img.shields.io/npm/v/safe-timeouts)
6
+ ![GitHub package.json version](https://img.shields.io/github/package-json/v/yetanotheraryan/safe-timeouts?style=flat-square&color=blue)
7
+ ![GitHub last commit](https://img.shields.io/github/last-commit/yetanotheraryan/safe-timeouts)
8
+ ![GitHub contributors](https://img.shields.io/github/contributors/yetanotheraryan/safe-timeouts)
9
+ ![GitHub forks](https://img.shields.io/github/forks/yetanotheraryan/safe-timeouts)
10
+ ![GitHub Repo stars](https://img.shields.io/github/stars/yetanotheraryan/safe-timeouts)
11
+ ![GitHub License](https://img.shields.io/github/license/yetanotheraryan/safe-timeouts)
10
12
 
11
13
  Promise-based deadline enforcement for async code in Node.js. `safe-timeout` helps you apply a **single execution deadline** across async functions, services, and external calls using standard `AbortSignal` semantics.
12
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "safe-timeouts",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Deadline-based timeouts for async code in Node.js. Enforce end-to-end execution deadlines with automatic propagation and AbortSignal support.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",