-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 KB
/
package.json
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
{
"name": "llamacpp-ai-provider",
"version": "0.0.9",
"description": "Vercel AI Provider for running LLMs locally using LLamaCpp",
"main": "./dist/index.js",
"scripts": {
"postinstall": "./bin/update_submodules.sh",
"build": "cmake-js -d ./llamacpp build && tsc",
"clean": "cmake-js -d ./llamacpp rebuild && tsc --build --clean",
"prepublish": "npm run clean",
"pretest": "npm run build",
"postversion": "git push && git push --tags",
"test": "NODE_OPTIONS=--experimental-vm-modules jest ./dist/*.test.js"
},
"type": "module",
"keywords": [
"llm",
"genai",
"vercel-ai"
],
"author": "Nick Nance",
"license": "MIT",
"devDependencies": {
"@ai-sdk/provider": "^0.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"cmake-js": "^7.3.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
},
"peerDependencies": {
"ai": "^3.0.20"
},
"files": [
"dist",
"llamacpp/build/Release"
],
"dependencies": {
"node-addon-api": "^8.0.0"
}
}