@karmaniverous/jeeves-watcher 0.1.0 → 0.2.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 +12 -16
- package/config.schema.json +577 -0
- package/dist/cjs/index.js +1120 -517
- package/dist/cli/jeeves-watcher/index.js +1479 -695
- package/dist/index.d.ts +255 -150
- package/dist/index.iife.js +1114 -514
- package/dist/index.iife.min.js +1 -1
- package/dist/mjs/index.js +1115 -520
- package/package.json +28 -22
package/package.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@commander-js/extra-typings": "^14.0.0",
|
|
17
|
+
"@karmaniverous/jsonmap": "^2.1.0",
|
|
17
18
|
"@langchain/google-genai": "*",
|
|
18
19
|
"@langchain/qdrant": "*",
|
|
19
20
|
"@langchain/textsplitters": "*",
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"ajv-formats": "*",
|
|
23
24
|
"cheerio": "^1.2.0",
|
|
24
25
|
"chokidar": "*",
|
|
25
|
-
"commander": "^14.0.
|
|
26
|
+
"commander": "^14.0.3",
|
|
26
27
|
"cosmiconfig": "*",
|
|
27
28
|
"fastify": "*",
|
|
28
29
|
"js-yaml": "*",
|
|
@@ -30,13 +31,15 @@
|
|
|
30
31
|
"mammoth": "^1.11.0",
|
|
31
32
|
"picomatch": "*",
|
|
32
33
|
"pino": "*",
|
|
34
|
+
"radash": "^12.1.1",
|
|
33
35
|
"tiktoken": "*",
|
|
34
36
|
"unpdf": "^1.4.0",
|
|
35
|
-
"uuid": "*"
|
|
37
|
+
"uuid": "*",
|
|
38
|
+
"zod": "^4.3.6"
|
|
36
39
|
},
|
|
37
40
|
"description": "Filesystem watcher that keeps a Qdrant vector store in sync with document changes",
|
|
38
41
|
"devDependencies": {
|
|
39
|
-
"@dotenvx/dotenvx": "^1.
|
|
42
|
+
"@dotenvx/dotenvx": "^1.52.0",
|
|
40
43
|
"@eslint/js": "^9.39.2",
|
|
41
44
|
"@rollup/plugin-alias": "^6.0.0",
|
|
42
45
|
"@rollup/plugin-commonjs": "^29.0.0",
|
|
@@ -46,34 +49,35 @@
|
|
|
46
49
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
47
50
|
"@types/fs-extra": "^11.0.4",
|
|
48
51
|
"@types/js-yaml": "*",
|
|
49
|
-
"@types/node": "^25.0
|
|
52
|
+
"@types/node": "^25.3.0",
|
|
50
53
|
"@types/picomatch": "*",
|
|
51
54
|
"@types/uuid": "*",
|
|
52
|
-
"@vitest/coverage-v8": "^4.0.
|
|
53
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
55
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
56
|
+
"@vitest/eslint-plugin": "^1.6.9",
|
|
54
57
|
"auto-changelog": "^2.5.0",
|
|
55
58
|
"cross-env": "^10.1.0",
|
|
56
59
|
"eslint": "^9.39.2",
|
|
57
60
|
"eslint-config-prettier": "^10.1.8",
|
|
58
|
-
"eslint-plugin-prettier": "^5.5.
|
|
61
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
59
62
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
60
63
|
"eslint-plugin-tsdoc": "^0.5.0",
|
|
61
64
|
"fs-extra": "^11.3.3",
|
|
62
|
-
"happy-dom": "^20.0
|
|
63
|
-
"knip": "^5.
|
|
64
|
-
"lefthook": "^2.
|
|
65
|
-
"prettier": "^3.
|
|
66
|
-
"release-it": "^19.2.
|
|
67
|
-
"rimraf": "^6.1.
|
|
68
|
-
"rollup": "^4.
|
|
65
|
+
"happy-dom": "^20.7.0",
|
|
66
|
+
"knip": "^5.84.1",
|
|
67
|
+
"lefthook": "^2.1.1",
|
|
68
|
+
"prettier": "^3.8.1",
|
|
69
|
+
"release-it": "^19.2.4",
|
|
70
|
+
"rimraf": "^6.1.3",
|
|
71
|
+
"rollup": "^4.58.0",
|
|
69
72
|
"rollup-plugin-dts": "^6.3.0",
|
|
70
73
|
"tslib": "^2.8.1",
|
|
71
|
-
"
|
|
72
|
-
"typedoc
|
|
74
|
+
"tsx": "^4.21.0",
|
|
75
|
+
"typedoc": "^0.28.17",
|
|
76
|
+
"typedoc-plugin-mdn-links": "^5.1.1",
|
|
73
77
|
"typedoc-plugin-replace-text": "^4.2.0",
|
|
74
78
|
"typescript": "^5.9.3",
|
|
75
|
-
"typescript-eslint": "^8.
|
|
76
|
-
"vitest": "^4.0.
|
|
79
|
+
"typescript-eslint": "^8.56.0",
|
|
80
|
+
"vitest": "^4.0.18"
|
|
77
81
|
},
|
|
78
82
|
"engines": {
|
|
79
83
|
"node": ">=20"
|
|
@@ -91,7 +95,8 @@
|
|
|
91
95
|
}
|
|
92
96
|
},
|
|
93
97
|
"files": [
|
|
94
|
-
"dist"
|
|
98
|
+
"dist",
|
|
99
|
+
"config.schema.json"
|
|
95
100
|
],
|
|
96
101
|
"homepage": "https://github.com/karmaniverous/jeeves-watcher#readme",
|
|
97
102
|
"keywords": [
|
|
@@ -151,9 +156,10 @@
|
|
|
151
156
|
"url": "git+https://github.com/karmaniverous/jeeves-watcher.git"
|
|
152
157
|
},
|
|
153
158
|
"scripts": {
|
|
154
|
-
"
|
|
159
|
+
"generate:schema": "tsx src/config/generate-schema.ts",
|
|
160
|
+
"build": "npm run generate:schema && rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
155
161
|
"changelog": "auto-changelog",
|
|
156
|
-
"diagrams": "cd diagrams
|
|
162
|
+
"diagrams": "cd diagrams && plantuml -tpng -o ../assets -r .",
|
|
157
163
|
"docs": "typedoc",
|
|
158
164
|
"knip": "knip",
|
|
159
165
|
"lint": "eslint .",
|
|
@@ -165,5 +171,5 @@
|
|
|
165
171
|
},
|
|
166
172
|
"type": "module",
|
|
167
173
|
"types": "dist/index.d.ts",
|
|
168
|
-
"version": "0.1
|
|
174
|
+
"version": "0.2.1"
|
|
169
175
|
}
|