UNPKG

@huggingface/gguf

Version:

a GGUF parser that works on remotely hosted files

60 lines 1.49 kB
{ "name": "@huggingface/gguf", "version": "0.1.17", "description": "a GGUF parser that works on remotely hosted files", "repository": "https://github.com/huggingface/huggingface.js.git", "publishConfig": { "access": "public" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "bin": { "gguf-view": "./dist/cli.js" }, "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "import": "./dist/index.mjs" } }, "browser": { "./src/cli.ts": false, "./src/utils/FileBlob.ts": false, "./dist/index.js": "./dist/browser/index.js", "./dist/index.mjs": "./dist/browser/index.mjs" }, "engines": { "node": ">=20" }, "source": "index.ts", "files": [ "dist", "src", "tsconfig.json" ], "keywords": [ "huggingface", "hub", "gguf" ], "author": "Hugging Face", "license": "MIT", "dependencies": { "@huggingface/tasks": "^0.19.5" }, "devDependencies": { "@types/node": "^20.12.8" }, "scripts": { "lint": "eslint --quiet --fix --ext .cjs,.ts .", "lint:check": "eslint --ext .cjs,.ts .", "format": "prettier --write .", "format:check": "prettier --check .", "build": "tsup src/index.ts src/cli.ts --format cjs,esm --clean && tsc --emitDeclarationOnly --declaration", "build:llm": "tsx scripts/generate-llm.ts && pnpm run format", "test": "vitest run", "check": "tsc" } }