{
  "name": "@van-ons/block-editor",
  "version": "1.0.0",
  "description": "A standalone implementation of the WordPress Block Editor",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "keywords": [
    "block",
    "editor",
    "gutenberg",
    "block-editor"
  ],
  "author": "Maurice Wijnia",
  "license": "GPL-2.0-or-later",
  "types": "dist/index.d.ts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "test": "echo \"Error: no test specified\" && exit 1",
    "watch": "npm run build:ts -- --watch & npm run build:sass -- --watch",
    "start": "vite playground",
    "prebuild": "npm run clean",
    "build": "npm run build:ts && npm run build:sass",
    "build:sass": "sass src/styles.scss dist/styles.css",
    "build:ts": "tsc"
  },
  "dependencies": {
    "@wordpress/api-fetch": "^6.6.0",
    "@wordpress/base-styles": "^4.5.0",
    "@wordpress/block-editor": "^9.1.0",
    "@wordpress/block-library": "^7.6.0",
    "@wordpress/blocks": "^11.8.0",
    "@wordpress/components": "^19.11.0",
    "@wordpress/data": "^6.9.0",
    "@wordpress/element": "^4.7.0",
    "@wordpress/format-library": "^3.7.0",
    "@wordpress/hooks": "^3.9.0",
    "@wordpress/keyboard-shortcuts": "^3.7.0",
    "@wordpress/server-side-render": "^3.7.0",
    "axios": "^0.21.1",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "css-loader": "^6.5.1",
    "css-minimizer-webpack-plugin": "^3.1.4",
    "mini-css-extract-plugin": "^2.4.5",
    "sass": "^1.43.4",
    "sass-loader": "^12.3.0",
    "ts-loader": "^9.2.6",
    "typescript": "^4.5.2",
    "vite": "^2.9.9",
    "webpack": "^5.64.2",
    "webpack-bundle-analyzer": "^4.5.0",
    "webpack-cli": "^4.9.1",
    "webpack-dev-server": "^4.6.0",
    "webpack-merge": "^5.8.0"
  },
  "peerDependencies": {
    "react": "~17.0.2",
    "react-dom": "~17.0.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/VanOns/block-editor.git"
  },
  "bugs": {
    "url": "https://github.com/VanOns/block-editor/issues"
  },
  "homepage": "https://github.com/VanOns/block-editor#readme"
}
