@omni-api/plugin-idempotency 0.0.1 → 0.0.2
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 +14 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omni-api/plugin-idempotency",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "Idempotency-Key middleware for OmniAPI: prevent duplicate writes from client retries",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -12,16 +12,12 @@
|
|
|
12
12
|
"import": "./dist/index.js"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"files": [
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
"test:watch": "vitest",
|
|
20
|
-
"typecheck": "tsc --noEmit",
|
|
21
|
-
"clean": "rm -rf dist .turbo coverage"
|
|
22
|
-
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
23
19
|
"dependencies": {
|
|
24
|
-
"@omni-api/core": "
|
|
20
|
+
"@omni-api/core": "0.0.2"
|
|
25
21
|
},
|
|
26
22
|
"devDependencies": {
|
|
27
23
|
"tsup": "^8.3.0",
|
|
@@ -32,5 +28,12 @@
|
|
|
32
28
|
},
|
|
33
29
|
"publishConfig": {
|
|
34
30
|
"access": "public"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "tsup",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:watch": "vitest",
|
|
36
|
+
"typecheck": "tsc --noEmit",
|
|
37
|
+
"clean": "rm -rf dist .turbo coverage"
|
|
35
38
|
}
|
|
36
|
-
}
|
|
39
|
+
}
|