{
  "name": "chat-widget",
  "version": "2.0.0",
  "description": "Chatyx - Embeddable chat widget",
  "main": "chat-widget.js",
  "scripts": {
    "build": "esbuild src/index.js --bundle --format=iife --outfile=chat-widget.js --loader:.css=text --target=es2015 --sourcemap=linked",
    "build:min": "esbuild src/index.js --bundle --format=iife --outfile=chat-widget.min.js --loader:.css=text --target=es2015 --minify --sourcemap=linked",
    "dev": "esbuild src/index.js --bundle --format=iife --outfile=chat-widget.js --loader:.css=text --target=es2015 --sourcemap=linked --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint src/",
    "lint:fix": "eslint src/ --fix",
    "format": "prettier --write src/",
    "start": "serve",
    "prepare": "husky || true"
  },
  "dependencies": {
    "serve": "^14.0.0"
  },
  "devDependencies": {
    "esbuild": "^0.20.0",
    "eslint": "^8.56.0",
    "husky": "^9.0.0",
    "jsdom": "^29.0.2",
    "lint-staged": "^15.2.0",
    "prettier": "^3.2.0",
    "vitest": "^4.1.4"
  },
  "lint-staged": {
    "src/**/*.js": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
