-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1002 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1002 Bytes
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
{
"name": "@codegraph/plugin-nlp",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Natural language processing for entity/relationship extraction",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.35",
"@codegraph/graph": "workspace:*",
"@codegraph/logger": "workspace:*",
"@codegraph/types": "workspace:*",
"@huggingface/transformers": "^3.8.1",
"@openrouter/ai-sdk-provider": "^1.5.4",
"ai": "^6.0.0",
"cheerio": "^1.2.0",
"mammoth": "^1.12.0",
"pdf-parse": "^2.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/pdf-parse": "^1.1.5",
"typescript": "^5.7.3",
"vitest": "^4.0.0"
}
}