@karmaniverous/jeeves-watcher 0.3.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/config.schema.json +69 -14
- package/dist/cjs/index.js +996 -562
- package/dist/cli/jeeves-watcher/index.js +825 -396
- package/dist/index.d.ts +160 -16
- package/dist/index.iife.js +824 -397
- package/dist/index.iife.min.js +1 -1
- package/dist/mjs/index.js +992 -564
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -22,18 +22,26 @@
|
|
|
22
22
|
"ajv": "^8.18.0",
|
|
23
23
|
"ajv-formats": "*",
|
|
24
24
|
"cheerio": "^1.2.0",
|
|
25
|
-
"chokidar": "
|
|
25
|
+
"chokidar": "^5.0.0",
|
|
26
26
|
"commander": "^14.0.3",
|
|
27
27
|
"cosmiconfig": "*",
|
|
28
|
+
"dayjs": "^1.11.19",
|
|
28
29
|
"fastify": "*",
|
|
30
|
+
"handlebars": "^4.7.8",
|
|
31
|
+
"hast": "^1.0.0",
|
|
32
|
+
"hast-util-to-mdast": "^10.1.2",
|
|
29
33
|
"ignore": "^7.0.5",
|
|
30
34
|
"js-yaml": "*",
|
|
31
35
|
"json5": "*",
|
|
32
36
|
"mammoth": "^1.11.0",
|
|
37
|
+
"mdast-util-from-adf": "^2.2.0",
|
|
38
|
+
"mdast-util-to-markdown": "^2.1.2",
|
|
33
39
|
"picomatch": "*",
|
|
34
40
|
"pino": "*",
|
|
35
41
|
"radash": "^12.1.1",
|
|
42
|
+
"rehype-parse": "^9.0.1",
|
|
36
43
|
"tiktoken": "*",
|
|
44
|
+
"unified": "^11.0.5",
|
|
37
45
|
"unpdf": "^1.4.0",
|
|
38
46
|
"uuid": "*",
|
|
39
47
|
"zod": "^4.3.6"
|
|
@@ -64,12 +72,12 @@
|
|
|
64
72
|
"eslint-plugin-tsdoc": "^0.5.0",
|
|
65
73
|
"fs-extra": "^11.3.3",
|
|
66
74
|
"happy-dom": "^20.7.0",
|
|
67
|
-
"knip": "^5.
|
|
75
|
+
"knip": "^5.85.0",
|
|
68
76
|
"lefthook": "^2.1.1",
|
|
69
77
|
"prettier": "^3.8.1",
|
|
70
78
|
"release-it": "^19.2.4",
|
|
71
79
|
"rimraf": "^6.1.3",
|
|
72
|
-
"rollup": "^4.
|
|
80
|
+
"rollup": "^4.59.0",
|
|
73
81
|
"rollup-plugin-dts": "^6.3.0",
|
|
74
82
|
"tslib": "^2.8.1",
|
|
75
83
|
"tsx": "^4.21.0",
|
|
@@ -177,5 +185,5 @@
|
|
|
177
185
|
},
|
|
178
186
|
"type": "module",
|
|
179
187
|
"types": "dist/index.d.ts",
|
|
180
|
-
"version": "0.
|
|
188
|
+
"version": "0.4.0"
|
|
181
189
|
}
|