| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "@growi/markdown-splitter",
- "version": "1.0.0",
- "license": "MIT",
- "private": "true",
- "type": "module",
- "module": "dist/index.js",
- "types": "dist/index.d.ts",
- "files": [
- "dist"
- ],
- "main": "dist/index.cjs",
- "exports": {
- ".": {
- "import": "./dist/index.js",
- "require": "./dist/index.cjs"
- }
- },
- "scripts": {
- "build": "vite build",
- "clean": "shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,ts}",
- "lint:typecheck": "tsc",
- "lint": "npm-run-all -p lint:*",
- "test": "vitest run --coverage"
- },
- "devDependencies": {
- "eslint-plugin-regex": "^1.8.0",
- "hast-util-sanitize": "^4.1.0",
- "pako": "^2.1.0",
- "throttle-debounce": "^5.0.0",
- "unified": "^10.1.2",
- "unist-util-visit": "^4.0.0"
- },
- "peerDependencies": {
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- },
- "dependencies": {
- "@types/js-yaml": "^4.0.9",
- "remark-frontmatter": "^5.0.0",
- "remark-gfm": "^4.0.0",
- "remark-parse": "^11.0.0",
- "remark-stringify": "^11.0.0",
- "unified": "^11.0.0"
- }
- }
|