llm-wiki-compiler 0.2.0 → 0.4.0
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 +163 -9
- package/dist/cli.js +1478 -417
- package/dist/cli.js.map +1 -1
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-wiki-compiler",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "A knowledge compiler CLI — raw sources in, interlinked wiki out",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"dev": "tsup --watch",
|
|
12
12
|
"test": "vitest run",
|
|
13
13
|
"test:watch": "vitest",
|
|
14
|
-
"prepublishOnly": "npm run build && npm test"
|
|
14
|
+
"prepublishOnly": "npm run build && npm test",
|
|
15
|
+
"prepare": "husky"
|
|
15
16
|
},
|
|
16
17
|
"keywords": [
|
|
17
18
|
"knowledge",
|
|
@@ -57,6 +58,8 @@
|
|
|
57
58
|
"@types/js-yaml": "^4.0.9",
|
|
58
59
|
"@types/jsdom": "^21.1.0",
|
|
59
60
|
"@types/turndown": "^5.0.0",
|
|
61
|
+
"fallow": "2.42.0",
|
|
62
|
+
"husky": "^9.1.7",
|
|
60
63
|
"tsup": "^8.0.0",
|
|
61
64
|
"typescript": "^5.7.0",
|
|
62
65
|
"vitest": "^3.0.0"
|