{
  "name": "@universityofmaryland/web-components-library",
  "version": "1.19.5",
  "description": "UMD Web Components",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./bundle": {
      "types": "./dist/bundle.d.ts",
      "import": "./dist/bundle.js"
    },
    "./cdn": {
      "types": "./dist/cdn.d.ts",
      "import": "./dist/cdn.js"
    },
    "./structural": {
      "types": "./dist/structural.d.ts",
      "import": "./dist/structural.js"
    },
    "./interactive": {
      "types": "./dist/interactive.d.ts",
      "import": "./dist/interactive.js"
    },
    "./feed": {
      "types": "./dist/feed.d.ts",
      "import": "./dist/feed.js"
    },
    "./content": {
      "types": "./dist/content.d.ts",
      "import": "./dist/content.js"
    },
    "./components/*": {
      "types": "./dist/components/*.d.ts",
      "import": "./dist/components/*.js"
    }
  },
  "license": "MIT",
  "repository": "",
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "dependencies": {
    "@types/postcss-js": "^4.0.4",
    "postcss-js": "^4.0.1",
    "postcss-nesting": "^13.0.1",
    "tw-to-css": "^0.0.12",
    "@universityofmaryland/web-elements-library": "^1.7.3",
    "@universityofmaryland/web-builder-library": "^1.0.4",
    "@universityofmaryland/web-feeds-library": "^1.3.10",
    "@universityofmaryland/web-icons-library": "^1.0.4",
    "@universityofmaryland/web-model-library": "^1.1.2",
    "@universityofmaryland/web-styles-library": "^1.8.16",
    "@universityofmaryland/web-token-library": "^1.0.3",
    "@universityofmaryland/web-utilities-library": "^1.0.6"
  },
  "peerDependencies": {
    "@universityofmaryland/web-builder-library": "^1.0.0",
    "@universityofmaryland/web-elements-library": "^1.0.0",
    "@universityofmaryland/web-feeds-library": "^1.0.0",
    "@universityofmaryland/web-icons-library": "^1.0.0",
    "@universityofmaryland/web-model-library": "^1.0.0",
    "@universityofmaryland/web-styles-library": "^1.0.0",
    "@universityofmaryland/web-utilities-library": "^1.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.0.0",
    "postcss": "^8.4.21",
    "typescript": "~5.8.2",
    "vite": "^7.1.4",
    "vite-plugin-dts": "^4.5.4"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "docs": "npx typedoc --options ./typedoc.json",
    "prebuild": "node ../../scripts/update-badges.js",
    "release": "pnpm run test && pnpm run build && pnpm publish --access public",
    "build": "vite build --mode production && pnpm run build:bundle && pnpm run build:cdn",
    "build:bundle": "BUILD_BUNDLE=true vite build --mode production",
    "build:cdn": "BUILD_CDN=true vite build --mode production",
    "dev": "vite build --mode development --watch",
    "start": "pnpm run dev",
    "preview": "vite preview",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:snapshot": "jest --updateSnapshot"
  }
}