{
  "name": "@nylas/web-elements",
  "version": "2.5.5",
  "description": "Nylas Web Elements",
  "main": "dist/index.cjs.js",
  "module": "dist/index.js",
  "es2015": "dist/esm/index.js",
  "es2017": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "unpkg": "dist/nylas-web-elements/nylas-web-elements.esm.js",
  "collection": "dist/collection/collection-manifest.json",
  "collection:main": "dist/collection/index.js",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nylas/nylas.git"
  },
  "files": [
    "dist/",
    "loader/",
    "components.d.ts"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs.js"
    },
    "./components": {
      "types": "./components.d.ts",
      "import": "./dist/components/index.js",
      "require": "./dist/components/index.cjs.js"
    },
    "./loader": {
      "types": "./loader/index.d.ts",
      "import": "./loader/index.js",
      "require": "./loader/index.cjs.js"
    },
    "./dist/*": "./dist/*"
  },
  "dependencies": {
    "@fullcalendar/core": "6.1.8",
    "@fullcalendar/daygrid": "6.1.8",
    "@fullcalendar/interaction": "6.1.8",
    "@fullcalendar/timegrid": "6.1.8",
    "@fullcalendar/rrule": "6.1.8",
    "@rollup/plugin-replace": "^6.0.2",
    "@sentry/browser": "^8.28.0",
    "@stencil/core": "4.36.3",
    "d3-time": "^3.1.0",
    "dayjs": "1.11.7",
    "i18next": "^23.11.5",
    "rrule": "2.8.1",
    "sanitize-html": "^2.13.0",
    "sortablejs": "^1.15.6",
    "@nylas/core": "^1.3.0",
    "@nylas/identity": "^3.1.0"
  },
  "devDependencies": {
    "@playwright/test": "^1.50.1",
    "@stencil-community/eslint-plugin": "^0.10.0",
    "@stencil/playwright": "^0.2.1",
    "@stencil/react-output-target": "^1.2.0",
    "@stencil/sass": "^3.2.2",
    "@stencil/store": "^2.2.0",
    "@types/d3-time": "^3.0.3",
    "@types/jest": "^29.5.6",
    "@types/node": "^16.18.11",
    "@types/tinycolor2": "^1.4.6",
    "dexie": "^3.2.4",
    "fake-indexeddb": "^5.0.1",
    "glob-promise": "^6.0.7",
    "jest": "^29.7.0",
    "jest-cli": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "msw": "^2.0.10",
    "node-fetch": "^3.3.2",
    "typedoc": "^0.25.13",
    "typescript": "^5.4.5",
    "vite": "^5.4.0"
  },
  "license": "MIT",
  "scripts": {
    "clean": "rm -rf dist",
    "build": "pnpm run clean && stencil build --prod && pnpm run build:custom-docs &&  node --max-old-space-size=8192 scripts/build-cdn.mjs",
    "build:docs": "stencil build --docs && pnpm run build:custom-docs",
    "build:custom-docs": "node ../../scripts/generate-custom-docs.mjs",
    "dev": "stencil build --prod --watch",
    "lint": "eslint src/",
    "e2e": "stencil test --e2e --runInBand",
    "serve": "pnpm dlx http-server -s -p 3333 -a localhost ./www",
    "start": "stencil build --prod --watch --serve --port 3333",
    "start:dev": "stencil build --watch --serve --port 3333",
    "local:dev": "stencil build --dev --watch --serve --config stencil.dev.config.ts --port 3333",
    "test": "pnpm run test.unit && pnpm run test.playwright",
    "test.playwright": "if [ -n \"$IS_CI\" ]; then pnpm exec playwright install; fi && IS_TEST=true playwright test",
    "test.unit": "IS_TEST=true stencil test --spec",
    "test.watch": "IS_TEST=true stencil test --spec --e2e --watchAll",
    "generate": "stencil generate",
    "generate:version": "node scripts/update-version.mjs",
    "deploy": "node ../../scripts/deploy-cloudflare.mjs -p nylas-playground -d ./packages/nylas-web-elements/www/",
    "setup-playwright": "pnpm exec playwright install"
  }
}