forked from gsanhueza/pi-llama-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 934 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 934 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
41
42
{
"name": "pi-llama-cpp",
"version": "0.5.1",
"description": "Pi extension for llama.cpp integration. Supports both router and single modes.",
"keywords": [
"pi",
"pi-package",
"pi-extension",
"llama-cpp"
],
"author": "Gabriel Sanhueza",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gsanhueza/pi-llama-cpp.git"
},
"homepage": "https://github.com/gsanhueza/pi-llama-cpp#readme",
"bugs": {
"url": "https://github.com/gsanhueza/pi-llama-cpp/issues"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"scripts": {
"test": "vitest run"
},
"prettier": {
"plugins": [
"prettier-plugin-organize-imports"
]
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@types/node": "^25.9.1",
"prettier-plugin-organize-imports": "^4.3.0",
"vitest": "^4.1.7"
}
}