| 1 |
{ |
| 2 |
"name": "simpletoc", |
| 3 |
"version": "5.0.23", |
| 4 |
"author": "Marc Tönsing", |
| 5 |
"description": "Add a Table of Contents block to your posts and pages. The TOC is a nested list of links to all heading found in the post or page. To use it, simply add a block and search for SimpleTOC or just TOC.", |
| 6 |
"main": "build/index.js", |
| 7 |
"license": "GPL-2.0-or-later", |
| 8 |
"scripts": { |
| 9 |
"start": "wp-scripts start", |
| 10 |
"build": "wp-scripts build", |
| 11 |
"format": "wp-scripts format", |
| 12 |
"format:src": "wp-scripts format ./src", |
| 13 |
"packages-update": "wp-scripts packages-update" |
| 14 |
}, |
| 15 |
"devDependencies": { |
| 16 |
"@wordpress/scripts": "^23.7.1", |
| 17 |
"ansi-regex": ">=6.0.1", |
| 18 |
"markdown-it": ">=12.3.2", |
| 19 |
"nanoid": ">=3.1.31", |
| 20 |
"node-fetch": ">=3.2.10", |
| 21 |
"nth-check": ">=2.0.1", |
| 22 |
"postcss": ">=8.4.5" |
| 23 |
}, |
| 24 |
"dependencies": { |
| 25 |
"@wordpress/i18n": "^4.14.0", |
| 26 |
"@wordpress/server-side-render": "^3.12.0" |
| 27 |
} |
| 28 |
} |
| 29 |
|