@karmaniverous/jeeves-watcher 0.1.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/package.json ADDED
@@ -0,0 +1,169 @@
1
+ {
2
+ "author": "Jason Williscroft",
3
+ "bin": {
4
+ "jeeves-watcher": "./dist/cli/jeeves-watcher/index.js"
5
+ },
6
+ "auto-changelog": {
7
+ "output": "CHANGELOG.md",
8
+ "unreleased": true,
9
+ "commitLimit": false,
10
+ "hideCredit": true
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/karmaniverous/jeeves-watcher/issues"
14
+ },
15
+ "dependencies": {
16
+ "@commander-js/extra-typings": "^14.0.0",
17
+ "@langchain/google-genai": "*",
18
+ "@langchain/qdrant": "*",
19
+ "@langchain/textsplitters": "*",
20
+ "@qdrant/js-client-rest": "*",
21
+ "ajv": "^8.18.0",
22
+ "ajv-formats": "*",
23
+ "cheerio": "^1.2.0",
24
+ "chokidar": "*",
25
+ "commander": "^14.0.2",
26
+ "cosmiconfig": "*",
27
+ "fastify": "*",
28
+ "js-yaml": "*",
29
+ "json5": "*",
30
+ "mammoth": "^1.11.0",
31
+ "picomatch": "*",
32
+ "pino": "*",
33
+ "tiktoken": "*",
34
+ "unpdf": "^1.4.0",
35
+ "uuid": "*"
36
+ },
37
+ "description": "Filesystem watcher that keeps a Qdrant vector store in sync with document changes",
38
+ "devDependencies": {
39
+ "@dotenvx/dotenvx": "^1.51.4",
40
+ "@eslint/js": "^9.39.2",
41
+ "@rollup/plugin-alias": "^6.0.0",
42
+ "@rollup/plugin-commonjs": "^29.0.0",
43
+ "@rollup/plugin-json": "^6.1.0",
44
+ "@rollup/plugin-node-resolve": "^16.0.3",
45
+ "@rollup/plugin-terser": "^0.4.4",
46
+ "@rollup/plugin-typescript": "^12.3.0",
47
+ "@types/fs-extra": "^11.0.4",
48
+ "@types/js-yaml": "*",
49
+ "@types/node": "^25.0.3",
50
+ "@types/picomatch": "*",
51
+ "@types/uuid": "*",
52
+ "@vitest/coverage-v8": "^4.0.16",
53
+ "@vitest/eslint-plugin": "^1.6.4",
54
+ "auto-changelog": "^2.5.0",
55
+ "cross-env": "^10.1.0",
56
+ "eslint": "^9.39.2",
57
+ "eslint-config-prettier": "^10.1.8",
58
+ "eslint-plugin-prettier": "^5.5.4",
59
+ "eslint-plugin-simple-import-sort": "^12.1.1",
60
+ "eslint-plugin-tsdoc": "^0.5.0",
61
+ "fs-extra": "^11.3.3",
62
+ "happy-dom": "^20.0.11",
63
+ "knip": "^5.79.0",
64
+ "lefthook": "^2.0.13",
65
+ "prettier": "^3.7.4",
66
+ "release-it": "^19.2.2",
67
+ "rimraf": "^6.1.2",
68
+ "rollup": "^4.54.0",
69
+ "rollup-plugin-dts": "^6.3.0",
70
+ "tslib": "^2.8.1",
71
+ "typedoc": "^0.28.15",
72
+ "typedoc-plugin-mdn-links": "^5.0.10",
73
+ "typedoc-plugin-replace-text": "^4.2.0",
74
+ "typescript": "^5.9.3",
75
+ "typescript-eslint": "^8.51.0",
76
+ "vitest": "^4.0.16"
77
+ },
78
+ "engines": {
79
+ "node": ">=20"
80
+ },
81
+ "exports": {
82
+ ".": {
83
+ "import": {
84
+ "types": "./dist/index.d.ts",
85
+ "default": "./dist/mjs/index.js"
86
+ },
87
+ "require": {
88
+ "types": "./dist/index.d.ts",
89
+ "default": "./dist/cjs/index.js"
90
+ }
91
+ }
92
+ },
93
+ "files": [
94
+ "dist"
95
+ ],
96
+ "homepage": "https://github.com/karmaniverous/jeeves-watcher#readme",
97
+ "keywords": [
98
+ "filesystem",
99
+ "watcher",
100
+ "qdrant",
101
+ "vector-store",
102
+ "embeddings",
103
+ "semantic-search",
104
+ "document-indexing",
105
+ "rag",
106
+ "langchain",
107
+ "gemini",
108
+ "typescript",
109
+ "cli"
110
+ ],
111
+ "license": "BSD-3-Clause",
112
+ "main": "dist/cjs/index.js",
113
+ "module": "dist/mjs/index.js",
114
+ "name": "@karmaniverous/jeeves-watcher",
115
+ "publishConfig": {
116
+ "access": "public"
117
+ },
118
+ "release-it": {
119
+ "git": {
120
+ "changelog": "npx auto-changelog --unreleased-only --stdout --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs",
121
+ "commitMessage": "chore: release v${version}",
122
+ "requireBranch": "main"
123
+ },
124
+ "github": {
125
+ "release": true
126
+ },
127
+ "hooks": {
128
+ "after:init": [
129
+ "npm run lint",
130
+ "npm run test",
131
+ "npm run knip",
132
+ "npm run build"
133
+ ],
134
+ "before:npm:release": [
135
+ "npx auto-changelog -p",
136
+ "npm run docs",
137
+ "git add -A"
138
+ ],
139
+ "after:release": [
140
+ "git switch -c release/${version}",
141
+ "git push -u origin release/${version}",
142
+ "git switch ${branchName}"
143
+ ]
144
+ },
145
+ "npm": {
146
+ "publish": true
147
+ }
148
+ },
149
+ "repository": {
150
+ "type": "git",
151
+ "url": "git+https://github.com/karmaniverous/jeeves-watcher.git"
152
+ },
153
+ "scripts": {
154
+ "build": "rimraf dist && cross-env NO_COLOR=1 rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
155
+ "changelog": "auto-changelog",
156
+ "diagrams": "cd diagrams/src && plantuml -tpng -o ../out -r .",
157
+ "docs": "typedoc",
158
+ "knip": "knip",
159
+ "lint": "eslint .",
160
+ "lint:fix": "eslint --fix .",
161
+ "release": "dotenvx run -f .env.local -- release-it",
162
+ "release:pre": "dotenvx run -f .env.local -- release-it --no-git.requireBranch --github.prerelease --preRelease",
163
+ "test": "vitest run",
164
+ "typecheck": "tsc"
165
+ },
166
+ "type": "module",
167
+ "types": "dist/index.d.ts",
168
+ "version": "0.1.0"
169
+ }