{
  "name": "@annotorious/annotorious",
  "version": "3.8.0",
  "description": "Add image annotation functionality to any web page with a few lines of JavaScript",
  "author": "Rainer Simon",
  "license": "BSD-3-Clause",
  "homepage": "https://annotorious.dev",
  "keywords": [
    "annotation",
    "image annotation",
    "data annotation"
  ],
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/annotorious/annotorious.git"
  },
  "bugs": {
    "url": "https://github.com/annotorious/annotorious/issues"
  },
  "scripts": {
    "start": "vite",
    "build:es": "vite build",
    "build:umd": "vite build --config vite.config.umd.js",
    "build": "npm run build:es && npm run build:umd",
    "preview": "vite preview",
    "test": "vitest"
  },
  "main": "./dist/annotorious.js",
  "module": "./dist/annotorious.es.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/annotorious.es.js",
      "require": "./dist/annotorious.js"
    },
    "./annotorious.css": "./dist/annotorious.css",
    "./src": "./src/index.ts"
  },
  "devDependencies": {
    "@sveltejs/vite-plugin-svelte": "^3.1.2",
    "@tsconfig/svelte": "^5.0.8",
    "@types/rbush": "^4.0.0",
    "jsdom": "^28.1.0",
    "svelte": "^4.2.20",
    "svelte-preprocess": "^6.0.3",
    "typescript": "^5.9.3",
    "vite": "^5.4.21",
    "vite-plugin-dts": "^4.5.4",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@annotorious/core": "3.8.0",
    "dequal": "^2.0.3",
    "rbush": "^4.0.1",
    "simplify-js": "^1.2.4",
    "uuid": "^13.0.0"
  }
}