{
  "name": "marjoram",
  "version": "1.2.0",
  "description": "Widget SDK toolkit — reactive state, template binding, and DOM isolation in under 5KB with zero dependencies",
  "keywords": [
    "dom",
    "reactive",
    "template",
    "state-management",
    "typescript",
    "zero-dependencies",
    "xss-safe",
    "widget",
    "embed",
    "embeddable",
    "sdk",
    "shadow-dom",
    "no-build"
  ],
  "homepage": "https://github.com/SBRoberts/marjoram#readme",
  "bugs": {
    "url": "https://github.com/SBRoberts/marjoram/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SBRoberts/marjoram.git"
  },
  "license": "MIT",
  "author": "Spencer Rose",
  "main": "dist/marjoram.cjs.js",
  "module": "dist/marjoram.esm.js",
  "browser": "dist/marjoram.umd.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/marjoram.esm.js",
      "require": "./dist/marjoram.cjs.js",
      "types": "./dist/index.d.ts"
    }
  },
  "sideEffects": false,
  "engines": {
    "node": ">=16"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:rollup && npm run build:types",
    "build:rollup": "rollup -c rollup.config.js",
    "build:types": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "clean": "rimraf dist",
    "dev": "rollup -c rollup.config.dev.js -w",
    "format": "prettier --write \"src/**/*.{ts,js,json}\" \"__tests__/**/*.{ts,js}\"",
    "format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"__tests__/**/*.{ts,js}\"",
    "lint": "eslint \"src/**/*.{ts,js}\" \"__tests__/**/*.{ts,js}\"",
    "lint:fix": "npm run lint -- --fix",
    "test": "jest",
    "test:watch": "jest --watchAll",
    "test:coverage": "jest --coverage",
    "type-check": "tsc --noEmit",
    "prepare": "npm run build",
    "prepublishOnly": "npm run test && npm run build",
    "release": "npm run test && npm run build && npm publish --access=public"
  },
  "devDependencies": {
    "@emotion/css": "^11.11.2",
    "@rollup/plugin-commonjs": "^22.0.0",
    "@rollup/plugin-node-resolve": "^13.3.0",
    "@rollup/plugin-replace": "^6.0.3",
    "@rollup/plugin-typescript": "^8.5.0",
    "@testing-library/dom": "^9.3.4",
    "@testing-library/jest-dom": "^6.9.1",
    "@types/jest": "^29.5.14",
    "@types/jsdom": "^27.0.0",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "eslint": "^8.54.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "jsdom": "^27.0.0",
    "prettier": "^3.1.0",
    "rimraf": "^5.0.5",
    "rollup": "^2.79.1",
    "rollup-plugin-livereload": "^2.0.5",
    "rollup-plugin-serve": "^1.1.1",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "tslib": "^2.6.2",
    "typescript": "^5.2.2"
  }
}
