-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 1.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@docfide/duct",
"version": "0.2.0",
"description": "Document intelligence pipeline — extract, chunk, embed, and search any document format",
"type": "module",
"bin": {
"duct": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"serve": "tsx src/cli.ts serve",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"canvas": "^3.2.3",
"chalk": "^5.6.2",
"cheerio": "^1.0.0",
"commander": "^12.0.0",
"express": "^4.18.0",
"mammoth": "^1.6.0",
"marked": "^12.0.0",
"multer": "^1.4.5-lts.1",
"openai": "^4.0.0",
"ora": "^9.4.0",
"pdfjs-dist": "^5.7.284",
"sharp": "^0.34.5",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@mistralai/mistralai": "^2.2.5",
"@types/express": "^4.17.0",
"@types/multer": "^1.4.0",
"@types/node": "^20.19.41",
"cohere-ai": "^8.0.0",
"express-rate-limit": "^8.5.2",
"tsx": "^4.0.0",
"typescript": "^5.4.0",
"vitest": "^4.1.7",
"voyageai": "^0.2.1"
},
"optionalDependencies": {
"@google/generative-ai": "^0.21.0",
"@mistralai/mistralai": "^2.0.0",
"cohere-ai": "^8.0.0",
"jszip": "^3.10.1",
"voyageai": "^0.3.0",
"xlsx": "^0.18.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/docfide/duct.git"
},
"homepage": "https://github.com/docfide/duct#readme",
"bugs": {
"url": "https://github.com/docfide/duct/issues"
},
"keywords": [
"document",
"extraction",
"rag",
"search",
"pdf",
"docx",
"markdown",
"embeddings",
"cli",
"pipeline"
],
"author": "Tensflare Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}