{
  "name": "boot-cell-editor",
  "version": "1.0.4",
  "license": "LGPL-3.0",
  "author": "shiy2008@gmail.com",
  "description": "Lightweight Rich Text Editor based on TypeScript, WebCell & Bootstrap",
  "keywords": [
    "rich-text",
    "html",
    "editor",
    "typescript",
    "webcell",
    "bootstrap"
  ],
  "homepage": "https://github.com/idea2app/Edkit/tree/master/WebCell/",
  "bugs": {
    "url": "https://github.com/idea2app/Edkit/issues"
  },
  "main": "dist/index.js",
  "module": "dist/index.esm.js",
  "source": "source/index.ts",
  "types": "dist/index.d.ts",
  "exports": {
    "types": "./dist/index.d.ts",
    "import": "./dist/index.esm.js",
    "require": "./dist/index.js"
  },
  "dependencies": {
    "@swc/helpers": "^0.5.23",
    "dom-renderer": "^2.6.4",
    "web-cell": "^3.2.2",
    "web-utility": "^4.7.2",
    "edkit": "^1.3.2"
  },
  "peerDependencies": {
    "mobx": ">=6.11"
  },
  "devDependencies": {
    "@parcel/config-default": "~2.16.4",
    "@parcel/packager-ts": "~2.16.4",
    "@parcel/transformer-typescript-tsc": "~2.16.4",
    "@parcel/transformer-typescript-types": "~2.16.4",
    "mobx": "^7.0.0",
    "parcel": "~2.16.4",
    "typescript": "~5.9.3"
  },
  "browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
  "targets": {
    "main": {
      "optimize": true
    }
  },
  "scripts": {
    "clean": "rm -rf .parcel-cache/ dist/",
    "start": "npm run clean  &&  cd test/  &&  parcel index.html --open",
    "pack-demo": "rm -rf .parcel-cache/ test/dist/  &&  cd test/  &&  parcel build index.html --public-url .",
    "build": "npm run clean  &&  parcel build --no-cache"
  }
}