-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.8 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
{
"name": "@tryformation/querylight-cli",
"version": "0.2.5",
"description": "Querylight CLI for building and querying local knowledge bases.",
"license": "MIT",
"homepage": "https://github.com/formation-res/querylight-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/formation-res/querylight-cli.git"
},
"bugs": {
"url": "https://github.com/formation-res/querylight-cli/issues"
},
"type": "module",
"bin": {
"qli": "dist/cli/main.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"scripts",
"Dockerfile",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts src/cli/main.ts --format esm --splitting false --clean && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"check": "npm run lint && npm test",
"prepublishOnly": "npm run check && npm run build && npm run verify:release-version",
"verify:release-version": "node scripts/assert-release-version.mjs"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@tryformation/querylight-ts": "^0.11.0",
"cheerio": "^1.2.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"feedparser": "^2.2.10",
"feedsmith": "^2.9.4",
"gray-matter": "^4.0.3",
"mammoth": "^1.12.0",
"pdf-parse": "^2.4.5",
"picocolors": "^1.1.1",
"turndown": "^7.2.4",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/feedparser": "^2.2.8",
"@types/node": "^25.8.0",
"@types/pdf-parse": "^1.1.5",
"@types/turndown": "^5.0.6",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
}
}