| @@ -1,60 +1,61 @@ | ||
| 1 | 1 | { |
| 2 | - "name": "code-block-pro", | |
| 3 | - "version": "0.1.0", | |
| 4 | - "description": "My amazing block", | |
| 5 | - "author": "Kevin Batdorf", | |
| 6 | - "license": "GPL-2.0-or-later", | |
| 7 | - "main": "build/index.js", | |
| 8 | - "scripts": { | |
| 9 | - "build": "wp-scripts build", | |
| 10 | - "format": "wp-scripts format", | |
| 11 | - "lint:css": "wp-scripts lint-style", | |
| 12 | - "lint:js": "wp-scripts lint-js", | |
| 13 | - "packages-update": "wp-scripts packages-update", | |
| 14 | - "plugin-zip": "wp-scripts plugin-zip", | |
| 15 | - "start": "wp-scripts start", | |
| 16 | - "eject": "node scripts/eject.mjs", | |
| 17 | - "rename": "node scripts/rename.mjs" | |
| 18 | - }, | |
| 19 | - "devDependencies": { | |
| 20 | - "@redux-devtools/extension": "^3.2.3", | |
| 21 | - "@trivago/prettier-plugin-sort-imports": "^3.4.0", | |
| 22 | - "@types/wordpress__block-editor": "^7.0.0", | |
| 23 | - "@types/wordpress__blocks": "^11.0.7", | |
| 24 | - "@typescript-eslint/parser": "^5.42.1", | |
| 25 | - "@wordpress/block-editor": "^10.4.0", | |
| 26 | - "@wordpress/env": "^5.6.0", | |
| 27 | - "@wordpress/scripts": "^24.5.0", | |
| 28 | - "@wordpress/url": "^3.22.0", | |
| 29 | - "autoprefixer": "^10.4.13", | |
| 30 | - "copy-webpack-plugin": "^11.0.0", | |
| 31 | - "cypress": "^10.7.0", | |
| 32 | - "cypress-wait-until": "^1.7.2", | |
| 33 | - "eslint": "^8.27.0", | |
| 34 | - "eslint-config-prettier": "^8.5.0", | |
| 35 | - "eslint-plugin-cypress": "^2.12.1", | |
| 36 | - "eslint-plugin-prettier": "^4.2.1", | |
| 37 | - "eslint-plugin-react": "^7.31.10", | |
| 38 | - "eslint-plugin-react-hooks": "^4.6.0", | |
| 39 | - "fast-glob": "^3.2.12", | |
| 40 | - "glob": "^8.0.3", | |
| 41 | - "postcss-import": "^15.0.0", | |
| 42 | - "postcss-safe-important": "^1.2.1", | |
| 43 | - "prettier": "^2.7.1", | |
| 44 | - "replace-in-file": "^6.3.5", | |
| 45 | - "tailwindcss": "^3.2.3", | |
| 46 | - "typescript": "^4.8.4" | |
| 47 | - }, | |
| 48 | - "dependencies": { | |
| 49 | - "@headlessui/react": "^1.7.4", | |
| 50 | - "@wordpress/block-editor": "^10.4.0", | |
| 51 | - "@wordpress/blocks": "^11.20.0", | |
| 52 | - "@wordpress/element": "^4.19.0", | |
| 53 | - "@wordpress/i18n": "^4.21.0", | |
| 54 | - "copy-to-clipboard": "^3.3.2", | |
| 55 | - "react-simple-code-editor": "^0.13.1", | |
| 56 | - "shiki": "^0.11.1", | |
| 57 | - "swr": "^1.3.0", | |
| 58 | - "zustand": "^4.1.4" | |
| 59 | - } | |
| 2 | + "name": "code-block-pro", | |
| 3 | + "version": "0.1.0", | |
| 4 | + "description": "Code Block Pro - Beautiful syntax highlighting", | |
| 5 | + "author": "Kevin Batdorf", | |
| 6 | + "license": "GPL-2.0-or-later", | |
| 7 | + "main": "build/index.js", | |
| 8 | + "scripts": { | |
| 9 | + "build": "wp-scripts build", | |
| 10 | + "format": "biome format --write .", | |
| 11 | + "lint": "biome check . && tsc --noEmit", | |
| 12 | + "lint:fix": "biome check --fix .", | |
| 13 | + "packages-update": "wp-scripts packages-update", | |
| 14 | + "plugin-zip": "wp-scripts plugin-zip", | |
| 15 | + "start": "wp-scripts start", | |
| 16 | + "start:hot": "wp-scripts start --hot", | |
| 17 | + "test:e2e": "node scripts/run-e2e.mjs" | |
| 18 | + }, | |
| 19 | + "devDependencies": { | |
| 20 | + "@biomejs/biome": "^2.4.11", | |
| 21 | + "@playwright/test": "^1.59.1", | |
| 22 | + "@redux-devtools/extension": "^4.0.0", | |
| 23 | + "@types/wordpress__block-editor": "15.0.5", | |
| 24 | + "@types/wordpress__blocks": "15.10.2", | |
| 25 | + "@types/wordpress__edit-post": "^8.4.2", | |
| 26 | + "@wordpress/block-editor": "15.16.0", | |
| 27 | + "@wordpress/e2e-test-utils-playwright": "^1.43.0", | |
| 28 | + "@wordpress/scripts": "31.8.0", | |
| 29 | + "@wordpress/url": "4.43.0", | |
| 30 | + "@wp-playground/cli": "^3.1.18", | |
| 31 | + "autoprefixer": "10.4.27", | |
| 32 | + "copy-webpack-plugin": "14.0.0", | |
| 33 | + "fast-glob": "3.3.3", | |
| 34 | + "glob": "13.0.6", | |
| 35 | + "postcss-import": "16.1.1", | |
| 36 | + "postcss-safe-important": "2.0.1", | |
| 37 | + "replace-in-file": "8.4.0", | |
| 38 | + "rtlcss-webpack-plugin": "^4.0.7", | |
| 39 | + "tailwindcss": "3.4.19", | |
| 40 | + "typescript": "6.0.2", | |
| 41 | + "webpack": "^5.106.1" | |
| 42 | + }, | |
| 43 | + "dependencies": { | |
| 44 | + "@headlessui/react": "2.2.10", | |
| 45 | + "@wordpress/block-editor": "15.16.0", | |
| 46 | + "@wordpress/blocks": "15.16.0", | |
| 47 | + "@wordpress/edit-post": "^8.43.0", | |
| 48 | + "@wordpress/element": "6.43.0", | |
| 49 | + "@wordpress/escape-html": "^3.43.0", | |
| 50 | + "@wordpress/hooks": "4.43.0", | |
| 51 | + "@wordpress/html-entities": "^4.43.0", | |
| 52 | + "@wordpress/i18n": "6.16.0", | |
| 53 | + "classnames": "^2.5.1", | |
| 54 | + "copy-to-clipboard": "3.3.3", | |
| 55 | + "react-simple-code-editor": "0.14.1", | |
| 56 | + "shiki": "0.14.7", | |
| 57 | + "strip-ansi": "^7.2.0", | |
| 58 | + "swr": "2.4.1", | |
| 59 | + "zustand": "5.0.12" | |
| 60 | + } | |
| 60 | 61 | } |