|
| 1 | +{ |
| 2 | + "author": "Titus Wormer <[email protected]> (https://wooorm.com)", |
| 3 | + "bugs": "https://github.com/rehypejs/rehype-unwrap-images/issues", |
| 4 | + "contributors": [ |
| 5 | + "Titus Wormer <[email protected]> (https://wooorm.com)" |
| 6 | + ], |
| 7 | + "dependencies": { |
| 8 | + "@types/hast": "^3.0.0", |
| 9 | + "hast-util-interactive": "^3.0.0", |
| 10 | + "hast-util-whitespace": "^3.0.0", |
| 11 | + "unist-util-visit": "^5.0.0" |
| 12 | + }, |
| 13 | + "description": "rehype plugin to remove the wrapping paragraph (`<p>`) for images (`<img>`)", |
| 14 | + "devDependencies": { |
| 15 | + "@types/node": "^22.0.0", |
| 16 | + "c8": "^10.0.0", |
| 17 | + "prettier": "^3.0.0", |
| 18 | + "rehype-parse": "^9.0.0", |
| 19 | + "rehype-stringify": "^10.0.0", |
| 20 | + "remark-cli": "^12.0.0", |
| 21 | + "remark-parse": "^11.0.0", |
| 22 | + "remark-preset-wooorm": "^10.0.0", |
| 23 | + "remark-rehype": "^11.0.0", |
| 24 | + "type-coverage": "^2.0.0", |
| 25 | + "typescript": "^5.0.0", |
| 26 | + "unified": "^11.0.0", |
| 27 | + "xo": "^0.59.0" |
| 28 | + }, |
| 29 | + "exports": "./index.js", |
| 30 | + "files": [ |
| 31 | + "lib/", |
| 32 | + "index.d.ts.map", |
| 33 | + "index.d.ts", |
| 34 | + "index.js" |
| 35 | + ], |
| 36 | + "funding": { |
| 37 | + "type": "opencollective", |
| 38 | + "url": "https://opencollective.com/unified" |
| 39 | + }, |
| 40 | + "keywords": [ |
| 41 | + "hast", |
| 42 | + "html", |
| 43 | + "image", |
| 44 | + "plugin", |
| 45 | + "rehype-plugin", |
| 46 | + "rehype", |
| 47 | + "unified", |
| 48 | + "unwrap" |
| 49 | + ], |
| 50 | + "license": "MIT", |
| 51 | + "name": "rehype-unwrap-images", |
| 52 | + "prettier": { |
| 53 | + "bracketSpacing": false, |
| 54 | + "singleQuote": true, |
| 55 | + "semi": false, |
| 56 | + "tabWidth": 2, |
| 57 | + "trailingComma": "none", |
| 58 | + "useTabs": false |
| 59 | + }, |
| 60 | + "remarkConfig": { |
| 61 | + "plugins": [ |
| 62 | + "remark-preset-wooorm" |
| 63 | + ] |
| 64 | + }, |
| 65 | + "repository": "rehypejs/rehype-unwrap-images", |
| 66 | + "scripts": { |
| 67 | + "build": "tsc --build --clean && tsc --build && type-coverage", |
| 68 | + "format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix", |
| 69 | + "prepack": "npm run build && npm run format", |
| 70 | + "test-api": "node --conditions development test.js", |
| 71 | + "test-coverage": "c8 --100 --reporter lcov npm run test-api", |
| 72 | + "test": "npm run build && npm run format && npm run test-coverage" |
| 73 | + }, |
| 74 | + "sideEffects": false, |
| 75 | + "typeCoverage": { |
| 76 | + "atLeast": 100, |
| 77 | + "detail": true, |
| 78 | + "ignoreCatch": true, |
| 79 | + "strict": true |
| 80 | + }, |
| 81 | + "type": "module", |
| 82 | + "version": "0.0.0", |
| 83 | + "xo": { |
| 84 | + "prettier": true |
| 85 | + } |
| 86 | +} |
0 commit comments