@resq-sw/decorators 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.
- package/package.json +13 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@resq-sw/decorators",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript method and class decorators for caching, rate limiting, control flow, and observability",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
},
|
|
14
14
|
"main": "lib/index.js",
|
|
15
15
|
"types": "lib/index.d.ts",
|
|
16
|
-
"files": [
|
|
16
|
+
"files": [
|
|
17
|
+
"lib",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
17
20
|
"scripts": {
|
|
18
21
|
"build": "tsdown",
|
|
19
22
|
"test": "vitest run"
|
|
@@ -33,7 +36,14 @@
|
|
|
33
36
|
"url": "git+https://github.com/resq-software/npm.git",
|
|
34
37
|
"directory": "packages/decorators"
|
|
35
38
|
},
|
|
36
|
-
"keywords": [
|
|
39
|
+
"keywords": [
|
|
40
|
+
"decorators",
|
|
41
|
+
"memoize",
|
|
42
|
+
"throttle",
|
|
43
|
+
"debounce",
|
|
44
|
+
"rate-limit",
|
|
45
|
+
"typescript"
|
|
46
|
+
],
|
|
37
47
|
"engines": {
|
|
38
48
|
"node": ">=20.19.0"
|
|
39
49
|
}
|