Process HTML for better web typography.
at main 1.5 kB view raw
1{ 2 "name": "rehype-typeset", 3 "version": "0.1.1", 4 "description": "Process HTML for better web typography.", 5 "keywords": [ 6 "remark-plugin", 7 "typeset", 8 "typography" 9 ], 10 "repository": "stormwarning/rehype-typeset", 11 "license": "ISC", 12 "author": "Jeff (https://tidaltheory.io)", 13 "sideEffects": false, 14 "type": "module", 15 "exports": { 16 ".": { 17 "default": "./plugin.js", 18 "types": "./plugin.d.ts" 19 }, 20 "./package.json": "./package.json" 21 }, 22 "files": [ 23 "plugin.d.ts", 24 "plugin.js", 25 "CHANGELOG.md", 26 "LICENSE.txt", 27 "README.md" 28 ], 29 "scripts": { 30 "build": "tsc plugin.js --declaration --allowJs --emitDeclarationOnly", 31 "changeset": "changeset add", 32 "prepack": "pnpm run build", 33 "prepare": "npx simple-git-hooks", 34 "release": "changeset publish", 35 "test": "node --test" 36 }, 37 "simple-git-hooks": { 38 "pre-commit": "npx lint-staged" 39 }, 40 "lint-staged": { 41 "*.{js,cjs,mjs,ts}": [ 42 "eslint --fix", 43 "prettier --write" 44 ], 45 "package.json": "prettier --write" 46 }, 47 "prettier": "@zazen/prettier-config", 48 "dependencies": { 49 "hast-util-to-string": "3.0.1", 50 "unist-util-visit": "5.0.0" 51 }, 52 "devDependencies": { 53 "@changesets/cli": "2.29.7", 54 "@types/hast": "3.0.4", 55 "@types/node": "24.5.2", 56 "@zazen/changesets-changelog": "2.0.3", 57 "@zazen/eslint-config": "7.3.0", 58 "@zazen/prettier-config": "1.1.3", 59 "eslint": "9.35.0", 60 "lint-staged": "16.1.6", 61 "prettier": "3.6.2", 62 "rehype": "13.0.2", 63 "simple-git-hooks": "2.13.1", 64 "typescript": "5.9.2" 65 }, 66 "packageManager": "pnpm@10.7.1" 67}