mirror of
https://github.com/zhigang1992/docz.git
synced 2026-04-29 09:55:55 +08:00
* chore: update dependencies * chore: prettier fix * fix(docz-core): data server rewriting files * feat(rehype-docz): add __componentPath on PropsTable * feat(docz-utils): add first version of package * chore(docz-utils): refac to include some more utils * chore(docz-core): remove unnescessary code * chore: tslint error
35 lines
867 B
JSON
35 lines
867 B
JSON
{
|
|
"name": "rehype-docz",
|
|
"version": "0.11.0",
|
|
"description": "Rehype plugin used by docz",
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"umd:main": "dist/index.umd.js",
|
|
"module": "dist/index.m.js",
|
|
"typings": "dist/index.d.ts",
|
|
"source": "src/index.ts",
|
|
"files": [
|
|
"dist/",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"dev": "libundler watch -e all --ts",
|
|
"build": "libundler build -e all --ts --c",
|
|
"fix": "run-s fix:*",
|
|
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
|
|
"fix:tslint": "tslint --fix --project .",
|
|
"tslint": "tslint --project ."
|
|
},
|
|
"dependencies": {
|
|
"docz-utils": "^0.11.2",
|
|
"hast-util-to-string": "^1.0.1",
|
|
"jsx-ast-utils": "^2.0.1",
|
|
"lodash.flatten": "^4.4.0",
|
|
"unist-util-is": "^2.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash.flatten": "^4.4.4"
|
|
}
|
|
}
|