-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 840 Bytes
/
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
{
"name": "ggml-js",
"version": "1.0.5",
"description": "JS bindings for the ggml library.",
"keywords": [
"ggml",
"machine-learning"
],
"type": "module",
"exports": {
"./core": "./lib/core/index.js",
"./llms": "./lib/llms/index.js",
"./tokenizers": "./lib/tokenizers/index.js"
},
"files": [
"lib",
"zig-out/lib/ggml.macos.node",
"zig-out/lib/ggml.linux.node"
],
"scripts": {
"test": "node examples/test",
"prepack": "zig build -Doptimize=ReleaseSafe && zig build -Doptimize=ReleaseSafe -Dtarget=x86_64-linux-gnu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cztomsik/ggml-js.git"
},
"author": "cztomsik",
"license": "MIT",
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"arrowParens": "avoid"
}
}