llmd 0.3.0 → 0.4.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/README.md +2 -0
- package/dist/client.js +53 -1
- package/dist/llmd +578 -130
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llmd",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Local markdown server for LLM-generated docs",
|
|
5
5
|
"author": "Phil Zona <phil.b.zona@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"README.md"
|
|
24
24
|
],
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=22"
|
|
26
|
+
"node": ">=22",
|
|
27
|
+
"bun": ">=1.2.2"
|
|
27
28
|
},
|
|
28
29
|
"publishConfig": {
|
|
29
30
|
"access": "public"
|
|
@@ -33,7 +34,6 @@
|
|
|
33
34
|
"test": "bun test",
|
|
34
35
|
"build": "bash scripts/build.sh",
|
|
35
36
|
"prepublishOnly": "bun test && bun run build",
|
|
36
|
-
"preview": "bun scripts/generate-preview.ts",
|
|
37
37
|
"check-contrast": "bun scripts/check-contrast.ts",
|
|
38
38
|
"format": "biome format --write .",
|
|
39
39
|
"format:check": "biome format .",
|