-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ai-thought-partner",
"version": "0.1.0",
"description": "A RAG for helping me think, with a simple web UI and a local vector DB and local LLM",
"type": "module",
"engines": {
"node": ">=21.x"
},
"author": "Craig R. Hughes <craig.git@rungie.com>",
"license": "Apache-2.0",
"scripts": {
"test": "eslint --fix;tsc;bun test",
"coverage": "bun test && genhtml coverage/lcov.info --output-directory coverage --header-title 'Coverage report' --footer \"$(git id)\" --legend --sort --show-owners all --annotate-script /opt/homebrew/Cellar/lcov/*/share/lcov/support-scripts/gitblame.pm --version-script /opt/homebrew/Cellar/lcov/*/share/lcov/support-scripts/gitversion.pm --ignore-errors version,version --ignore-errors package,package --hierarchical --criteria-script /opt/homebrew/Cellar/lcov/*/share/lcov/support-scripts/criteria.pm --show-navigation --show-proportion --num-spaces 4 --function-coverage --branch-coverage ; open coverage/index.html",
"package-check": "bunx npm-check -i bun:test",
"lint": "eslint --fix",
"postversion": "git commit -m \"Bump package version to $npm_package_version\" package.json; git flow release start $npm_package_version; git flow release finish -m $npm_package_version $npm_package_version; git checkout develop; git merge master"
},
"devDependencies": {
"@hughescr/eslint-config-default": "^3.0.4",
"@types/bun": "^1.2.16",
"@types/cli-progress": "^3.11.6",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.18",
"@types/node": "^24.0.3",
"@types/pouchdb": "^6.4.2",
"eslint": "^9.29.0",
"eslint-plugin-jest": "^29.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.21",
"@hughescr/logger": "^2.6.0",
"@langchain/aws": "^0.1.11",
"@langchain/community": "^0.3.46",
"@langchain/core": "^0.3.59",
"@langchain/langgraph": "^0.3.4",
"@langchain/openai": "^0.5.13",
"@langchain/textsplitters": "^0.1.0",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^14.0.0",
"execa": "^9.6.0",
"faiss-node": "^0.5.1",
"js-tiktoken": "^1.0.20",
"langchain": "^0.3.28",
"lodash": "^4.17.21",
"mammoth": "^1.9.1",
"mistral-tokenizer-ts": "^2.2.1",
"neo4j-driver": "^5.28.1",
"node-llama-cpp": "^3.10.0",
"pdf-parse": "^1.1.1",
"pouchdb": "^9.0.0",
"pouchdb-find": "^9.0.0",
"zod": "^3.25.67"
},
"trustedDependencies": [
"esbuild",
"faiss-node",
"leveldown",
"node-llama-cpp",
"sharp"
]
}