mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 15:03:46 +00:00
- Add @ruvector/ruvllm-cli v0.1.0: CLI for LLM inference with Metal/CUDA - Add @ruvector/ruvllm-wasm v0.1.0: Browser LLM inference with WebGPU - Remove duplicate npm/packages/wasm (replaced by ruvector-wasm) - Fix workspace:* reference in ruvector-wasm-unified - Update README with npm packages section Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "@ruvector/ruvllm-cli",
|
|
"version": "0.1.0",
|
|
"description": "CLI for LLM inference, benchmarking, and model management - run local LLMs with Metal/CUDA acceleration",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"ruvllm": "./bin/ruvllm.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "node --test test/*.test.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.19.30",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"keywords": [
|
|
"llm",
|
|
"cli",
|
|
"inference",
|
|
"benchmarking",
|
|
"gguf",
|
|
"metal",
|
|
"cuda",
|
|
"local-llm",
|
|
"ai",
|
|
"machine-learning",
|
|
"ruvector",
|
|
"ruvllm",
|
|
"model-serving"
|
|
],
|
|
"author": "rUv Team <team@ruv.io>",
|
|
"license": "MIT OR Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ruvnet/ruvector.git",
|
|
"directory": "npm/packages/ruvllm-cli"
|
|
},
|
|
"homepage": "https://github.com/ruvnet/ruvector/tree/main/crates/ruvllm-cli",
|
|
"bugs": {
|
|
"url": "https://github.com/ruvnet/ruvector/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"README.md"
|
|
]
|
|
}
|