-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.01 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.01 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
{
"name": "charmonator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "env CHARMONATOR_CONFIG=conf/config.unittest.json ./node_modules/.bin/mocha --tags \"not:llm\" test/**/*.spec.mjs",
"test:legacy": "env CHARMONATOR_CONFIG=conf/config.unittest.legacy.json ./node_modules/.bin/mocha --tags \"legacy\" test/testLegacyToolboxConfigRequests.spec.mjs",
"test:all": "env CHARMONATOR_CONFIG=conf/config.unittest.json ./node_modules/.bin/mocha test/**/*.spec.mjs",
"test:myfavorite": "env CHARMONATOR_CONFIG=conf/config.unittest.json node ./node_modules/mocha/bin/mocha --grep \"list available models\"",
"test:ci": "env CHARMONATOR_CONFIG=conf/config.unittest.json ./node_modules/.bin/mocha --reporter json --reporter-option output=test/reports/test_ci.json test/**/*.spec.mjs",
"postinstall": "mkdir -p test/data && touch test/data/05-versions-space.pdf # pdf-parse workaround"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.26.4",
"@anthropic-ai/sdk": "^0.31.0",
"@babel/parser": "^7.26.5",
"@babel/traverse": "^7.26.5",
"@google/generative-ai": "^0.21.0",
"axios": "^1.13.5",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"duckduckgo-search": "^1.0.7",
"express": "^4.21.0",
"jimp": "^1.6.0",
"mammoth": "^1.12.0",
"mathjs": "^14.0.1",
"multer": "^2.1.1",
"node-pptx-parser": "^1.0.1",
"officeparser": "^5.2.1",
"ollama": "^0.5.11",
"openai": "^4.60.0",
"pdf-parse": "^1.1.1",
"pdf2pic": "^3.2.0",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1",
"tesseract.js": "^6.0.0",
"tiktoken": "^1.0.18",
"uuid": "^11.0.5"
},
"devDependencies": {
"mocha": "^11.2.0",
"mocha-tags-ultra": "^1.0.3"
},
"overrides": {
"@aws-sdk/core": "3.973.24",
"@aws-sdk/xml-builder": "3.972.15",
"underscore": "1.13.8",
"serialize-javascript": "7.0.4",
"glob": "10.5.0",
"tar-fs": "3.1.2",
"cross-spawn": "7.0.6"
}
}