| 1 |
{ |
| 2 |
"name": "simpletoc", |
| 3 |
"version": "5.0.30", |
| 4 |
"author": "Marc Tönsing", |
| 5 |
"description": "SEO-friendly Table of Contents Gutenberg block. No JavaScript and no CSS means faster loading.", |
| 6 |
"main": "build/index.js", |
| 7 |
"license": "GPL-2.0-or-later", |
| 8 |
"scripts": { |
| 9 |
"format": "wp-scripts format", |
| 10 |
"lint:css": "wp-scripts lint-style", |
| 11 |
"check-engines": "wp-scripts check-engines", |
| 12 |
"lint:js": "wp-scripts lint-js", |
| 13 |
"packages-update": "wp-scripts packages-update", |
| 14 |
"build": "wp-scripts build", |
| 15 |
"start": "wp-scripts start", |
| 16 |
"lint-js": "wp-scripts lint-js", |
| 17 |
"lint-js:fix": "wp-scripts lint-js --fix", |
| 18 |
"lint-css": "wp-scripts lint-style", |
| 19 |
"lint-css:fix": "wp-scripts lint-style --fix" |
| 20 |
}, |
| 21 |
"devDependencies": { |
| 22 |
"@wordpress/scripts": "24.3.0", |
| 23 |
"ansi-regex": ">=6.0.1", |
| 24 |
"markdown-it": ">=12.3.2", |
| 25 |
"nanoid": ">=3.1.31", |
| 26 |
"node-fetch": ">=3.2.10", |
| 27 |
"nth-check": ">=2.0.1", |
| 28 |
"postcss": ">=8.4.5" |
| 29 |
}, |
| 30 |
"dependencies": { |
| 31 |
"@wordpress/i18n": "^4.19.0", |
| 32 |
"@wordpress/server-side-render": "^3.17.0", |
| 33 |
"react": "^17.0.2" |
| 34 |
} |
| 35 |
} |
| 36 |
|