{
  "name": "@loxia-labs/spitfire",
  "version": "1.2.1",
  "description": "Standalone Node.js module for running LLMs locally - no external dependencies",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "bin": {
    "spitfire": "dist/cli.js"
  },
  "scripts": {
    "build:ts": "tsc",
    "build:wasm": "cd native && ./build-wasm.sh",
    "build": "npm run build:ts",
    "build:full": "npm run build:wasm && npm run build:ts",
    "dev": "tsc --watch",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "lint": "eslint src --ext .ts",
    "start": "node dist/index.js",
    "cli": "node dist/cli.js"
  },
  "keywords": [
    "llm",
    "ollama",
    "ai",
    "machine-learning",
    "inference",
    "llama",
    "gguf",
    "webgpu",
    "gpu",
    "wasm",
    "webassembly",
    "transformer",
    "gpt",
    "local-llm",
    "quantization"
  ],
  "author": "Loxia Labs, Daniel Suissa",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.10.0",
    "@types/nunjucks": "^3.2.6",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.55.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.3.0"
  },
  "dependencies": {
    "@webgpu/types": "^0.1.69",
    "fastify": "^4.24.0",
    "nunjucks": "^3.2.4",
    "webgpu": "^0.3.8"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "directories": {
    "test": "tests"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Loxia-ai/loxia-spitfire.git"
  },
  "bugs": {
    "url": "https://github.com/Loxia-ai/loxia-spitfire/issues"
  },
  "homepage": "https://github.com/Loxia-ai/loxia-spitfire#readme"
}
