@markdown-for-agents/hono 1.1.4 → 1.1.5
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/README.md +2 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -54,6 +54,8 @@ curl http://localhost:3000
|
|
|
54
54
|
curl -H "Accept: text/markdown" http://localhost:3000
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
+
> **Full working example:** See [`examples/hono/`](https://github.com/KKonstantinov/markdown-for-agents/tree/main/examples/hono) for a complete Hono app with integration tests.
|
|
58
|
+
|
|
57
59
|
## Options
|
|
58
60
|
|
|
59
61
|
Accepts all [`markdown-for-agents` options](https://www.npmjs.com/package/markdown-for-agents#options):
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markdown-for-agents/hono",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Hono middleware — serve Markdown to AI agents via content negotiation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"main": "./dist/index.mjs",
|
|
21
21
|
"types": "./dist/index.d.mts",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"markdown-for-agents": "1.1.
|
|
23
|
+
"markdown-for-agents": "1.1.4"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"hono": ">=4.0.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"hono": "^4.12.
|
|
29
|
+
"hono": "^4.12.8"
|
|
30
30
|
},
|
|
31
31
|
"keywords": [
|
|
32
32
|
"html",
|
|
@@ -62,6 +62,6 @@
|
|
|
62
62
|
"test:watch": "vitest",
|
|
63
63
|
"test:integration": "vitest run test/integration",
|
|
64
64
|
"typecheck": "tsgo --noEmit",
|
|
65
|
-
"release:jsr": "npx jsr publish"
|
|
65
|
+
"release:jsr": "npx jsr publish --allow-dirty"
|
|
66
66
|
}
|
|
67
67
|
}
|