hono-idempotency 0.8.1 → 0.8.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 +21 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hono-idempotency",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Stripe-style Idempotency-Key middleware for Hono. IETF draft-ietf-httpapi-idempotency-key-header compliant.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -69,6 +69,25 @@
|
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
71
|
"sideEffects": false,
|
|
72
|
+
"typesVersions": {
|
|
73
|
+
"*": {
|
|
74
|
+
"stores/memory": [
|
|
75
|
+
"./dist/stores/memory.d.ts"
|
|
76
|
+
],
|
|
77
|
+
"stores/cloudflare-kv": [
|
|
78
|
+
"./dist/stores/cloudflare-kv.d.ts"
|
|
79
|
+
],
|
|
80
|
+
"stores/cloudflare-d1": [
|
|
81
|
+
"./dist/stores/cloudflare-d1.d.ts"
|
|
82
|
+
],
|
|
83
|
+
"stores/redis": [
|
|
84
|
+
"./dist/stores/redis.d.ts"
|
|
85
|
+
],
|
|
86
|
+
"stores/durable-objects": [
|
|
87
|
+
"./dist/stores/durable-objects.d.ts"
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
},
|
|
72
91
|
"files": [
|
|
73
92
|
"dist"
|
|
74
93
|
],
|
|
@@ -126,7 +145,7 @@
|
|
|
126
145
|
"lint:fix": "biome check --write .",
|
|
127
146
|
"format": "biome format --write .",
|
|
128
147
|
"typecheck": "tsc --noEmit",
|
|
129
|
-
"release": "pnpm build && changeset publish",
|
|
148
|
+
"release": "pnpm build && changeset publish --no-git-tag",
|
|
130
149
|
"version-packages": "changeset version && pnpm lint:fix"
|
|
131
150
|
}
|
|
132
151
|
}
|