-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.86 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
{
"name": "doc2vec",
"version": "2.6.0",
"type": "commonjs",
"description": "",
"main": "dist/doc2vec.js",
"private": false,
"publishConfig": {
"access": "public"
},
"bin": {
"doc2vec": "dist/doc2vec.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod 755 dist/doc2vec.js",
"start": "node dist/doc2vec.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chonkiejs/core": "^0.0.7",
"@mozilla/readability": "^0.4.4",
"@qdrant/js-client-rest": "^1.13.0",
"@qdrant/qdrant-js": "^1.13.0",
"axios": "^1.6.2",
"better-sqlite3": "^11.9.1",
"chalk": "^5.4.1",
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"js-yaml": "^4.1.0",
"jsdom": "^26.0.0",
"mammoth": "^1.11.0",
"openai": "^4.20.1",
"pdfjs-dist": "^5.3.31",
"pg": "^8.18.0",
"puppeteer": "^24.1.1",
"sanitize-html": "^2.11.0",
"sqlite-vec": "0.1.7-alpha.2",
"tree-sitter-wasms": "^0.1.0",
"turndown": "^7.1.2",
"web-tree-sitter": "^0.25.4",
"word-extractor": "^1.0.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/js-yaml": "^4.0.9",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.10.0",
"@types/pg": "^8.16.0",
"@types/sanitize-html": "^2.9.5",
"@types/turndown": "^5.0.4",
"@vitest/coverage-v8": "^4.0.18",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vitest": "^4.0.18"
}
}