Files
gitbook/packages/react-math/package.json
T
2025-10-14 14:39:19 +02:00

39 lines
943 B
JSON

{
"name": "@gitbook/react-math",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"version": "0.6.2",
"sideEffects": false,
"dependencies": {
"katex": "^0.16.25",
"object-hash": "^3.0.0"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"typescript": "catalog:"
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"dev": "bun run build -- --watch ./src",
"clean": "rm -rf ./dist"
},
"bin": {
"gitbook-math": "./bin/gitbook-math.js"
},
"files": ["dist", "bin", "css", "README.md", "CHANGELOG.md"],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}