-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "llama.cpp-ts",
"version": "1.2.0",
"description": "Node.js bindings for LlamaCPP, a C++ library for running language models.",
"repository": "https://github.com/developer239/llama.cpp-ts",
"main": "index.js",
"typings": "index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"node-addon-api": "8.1.0",
"cmake-js": "7.3.0"
},
"scripts": {
"postinstall": "npm run clone-submodule && npm run build",
"clone-submodule": "bash ./clone-submodule.sh",
"build": "cmake-js compile -d cpp print-configure",
"example": "node example/index.js"
},
"keywords": [
"node",
"language-model",
"c++",
"cpp",
"node-addon-api",
"cmake",
"cmake-js",
"llama",
"llama.cpp",
"3.1"
],
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "10.0.3",
"semantic-release": "21.0.1"
}
}