ggml-js
Version:
JS bindings for the ggml library.
37 lines (36 loc) • 865 B
JSON
{
"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": "echo \"Error: no test specified\" && exit 1",
"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"
}
}