-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.13 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.13 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
{
"name": "@threaded/ai",
"version": "2.2.0",
"description": "Composable LLM inference with multi-provider support, tool execution, streaming, and approval workflows",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest --reporter=verbose --run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"author": "nvms",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"zod": "^4.1.11"
},
"peerDependencies": {
"@huggingface/transformers": "^3.0.0",
"@modelcontextprotocol/sdk": "^1.0.0"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
},
"@modelcontextprotocol/sdk": {
"optional": true
}
},
"devDependencies": {
"@huggingface/transformers": "^3.7.5",
"@modelcontextprotocol/sdk": "^1.18.2",
"@types/node": "^24.5.2",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}