{
  "name": "@usermaven/sdk-js",
  "version": "1.5.15",
  "description": "Usermaven JavaScript SDK",
  "main": "dist/lib.js",
  "module": "dist/usermaven.es.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "keywords": [
    "usermaven",
    "analytics",
    "tracking"
  ],
  "license": "MIT",
  "devDependencies": {
    "@playwright/test": "^1.40.0",
    "@testing-library/dom": "^10.4.0",
    "@testing-library/jest-dom": "^6.5.0",
    "@types/jest": "^29.5.13",
    "@types/node": "^18.15.11",
    "@typescript-eslint/eslint-plugin": "^5.57.1",
    "@typescript-eslint/parser": "^5.57.1",
    "@vitest/coverage-v8": "^2.1.2",
    "body-parser": "^1.20.3",
    "browserstack-local": "^1.5.5",
    "browserstack-node-sdk": "^1.34.31",
    "chalk": "^5.3.0",
    "colors": "^1.4.0",
    "concurrently": "^9.0.1",
    "cors": "^2.8.5",
    "dotenv": "^16.3.1",
    "eslint": "^8.37.0",
    "express": "^4.21.0",
    "http-server": "^14.1.1",
    "jsdom": "^25.0.1",
    "morgan": "^1.10.0",
    "playwright": "^1.40.0",
    "typescript": "^5.0.3",
    "vite": "^5.4.8",
    "vite-plugin-dts": "^4.2.3",
    "vitest": "^2.1.2",
    "wait-on": "^8.0.1",
    "winston": "^3.14.2"
  },
  "scripts": {
    "dev": "vite build --watch",
    "build": "tsc && vite build",
    "preview": "vite preview",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:e2e": "npm run build && playwright test --config=./playwright.local.config.ts",
    "test:e2e:ci": "npm run build && playwright test --config=./playwright.ci.config.ts",
    "test:e2e:ui": "npm run build && playwright test --ui --config=./playwright.local.config.ts",
    "test:browserstack": "npx browserstack-node-sdk playwright test --config=./playwright.config.ts",
    "lint": "eslint . --ext .ts",
    "format": "biome format --write .",
    "mock": "wait-on dist/lib.js && node server/mockServer.js",
    "example:build": "tsc examples/test.ts --outDir examples",
    "example:serve": "wait-on dist/lib.js && vite --config vite.config.ts",
    "serve:test": "http-server . -p 3000",
    "start": "concurrently \"npm run dev\" \"npm run example:serve\" \"npm run mock\" "
  }
}