{
  "name": "nekoai-js",
  "version": "1.3.0",
  "description": "A lightweight JavaScript/TypeScript API for NovelAI image generation, director tools and text generation",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup src/index.ts --format cjs,esm --watch --dts",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "semantic-release": "semantic-release"
  },
  "keywords": [
    "novelai",
    "ai",
    "image-generation",
    "anime",
    "stable-diffusion"
  ],
  "author": "Nya Foundation",
  "license": "AGPL-3.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Nya-Foundation/NekoAI-JS.git"
  },
  "bugs": {
    "url": "https://github.com/Nya-Foundation/NekoAI-JS/issues"
  },
  "homepage": "https://github.com/Nya-Foundation/NekoAI-JS#readme",
  "devDependencies": {
    "@semantic-release/git": "^10.0.1",
    "@types/node": "^22.0.0",
    "dotenv": "^17.4.2",
    "eslint": "^9.39.0",
    "prettier": "^3.9.5",
    "semantic-release": "^25.0.7",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.64.0",
    "vitest": "^4.1.10"
  },
  "dependencies": {
    "@msgpack/msgpack": "^3.1.3",
    "exifreader": "^4.41.0",
    "jszip": "^3.10.1",
    "pako": "^3.0.1",
    "png-chunk-text": "^1.0.0",
    "png-chunks-extract": "^1.0.0"
  },
  "optionalDependencies": {
    "canvas": "^3.2.3"
  }
}
