Files
medusa-store/www/utils/packages/react-docs-generator/package.json
Shahed Nasser b39de05535 chore: move docs-util to www (#7232)
* reorganize docs apps

* add README

* fix directory

* add condition for old docs

* move docs-util to www

* remove remaining docs-util

* fixes of paths

* fix scripts

* path fixes

* fix github actions

* add build packages script
2024-05-06 09:13:50 +03:00

38 lines
930 B
JSON

{
"name": "react-docs-generator",
"license": "MIT",
"scripts": {
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"generate:ui": "yarn start --src ../../../../packages/design-system/ui/src --output ../../../apps/ui/src/specs --clean",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "cross-env NODE_ENV=production tsc --build"
},
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"type": "module",
"exports": "./dist/index.js",
"bin": "dist/index.js",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"glob": "^10.3.10",
"react-docgen": "^7.0.1",
"resolve": "^1.22.8",
"ts-node": "^10.9.1",
"typedoc": "^0.25.12",
"typedoc-plugin-custom": "*",
"typescript": "5.2",
"utils": "*"
},
"devDependencies": {
"@types/node": "^20.9.4"
},
"peerDependencies": {
"typedoc": "0.25.x"
}
}