mirror of
https://github.com/zhigang1992/docz.git
synced 2026-04-28 17:35:54 +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
851 B
JSON
35 lines
851 B
JSON
{
|
|
"name": "load-cfg",
|
|
"version": "0.11.1",
|
|
"description": "Method that can load project configurations based",
|
|
"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 --ts -e all",
|
|
"build": "libundler build --ts -e all --c",
|
|
"fix": "run-s fix:*",
|
|
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
|
|
"fix:tslint": "tslint --fix --project .",
|
|
"tslint": "tslint --project ."
|
|
},
|
|
"dependencies": {
|
|
"deepmerge": "^2.1.1",
|
|
"esm": "^3.0.84",
|
|
"find-up": "^3.0.0",
|
|
"fs-extra": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/find-up": "^2.1.1",
|
|
"@types/node": "^10.10.1"
|
|
}
|
|
}
|