@huggingface/gguf
Version:
a GGUF parser that works on remotely hosted files
60 lines • 1.48 kB
JSON
{
"name": "@huggingface/gguf",
"version": "0.3.6",
"description": "a GGUF parser that works on remotely hosted files",
"keywords": [
"gguf",
"hub",
"huggingface"
],
"license": "MIT",
"author": "Hugging Face",
"repository": "https://github.com/huggingface/huggingface.js.git",
"bin": {
"gguf-view": "./dist/cli.js"
},
"source": "index.ts",
"files": [
"dist",
"src",
"tsconfig.json"
],
"main": "./dist/index.js",
"module": "./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"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@huggingface/tasks": "^0.19.90"
},
"devDependencies": {
"@types/node": "^20.12.8"
},
"engines": {
"node": ">=20"
},
"scripts": {
"lint": "eslint --quiet --fix --ext .cjs,.ts .",
"lint:check": "eslint --ext .cjs,.ts .",
"format": "oxfmt .",
"format:check": "oxfmt --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"
}
}