-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
35 lines (35 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"private": true,
"name": "docusaurus-plugin-typedoc-api-root",
"scripts": {
"check": "yarn run type && yarn run lint",
"clean": "packemon clean --cwd packages/plugin",
"docs": "yarn run build && cd website && yarn run start",
"build": "packemon build --addEngines --cwd packages/plugin",
"pack": "rimraf packages/plugin/tsconfig.lib.tsbuildinfo && packemon pack --addEngines --declaration --cwd packages/plugin",
"format": "prettier --write .",
"lint": "eslint --cache --color --fix --ext .ts,.tsx ./packages/*/{src,tests} ./website/src",
"type": "tsc --build",
"release": "yarn run pack && yarn run check && lerna-release"
},
"devDependencies": {
"@moonrepo/dev": "^2.0.1",
"@types/marked": "^6.0.0",
"@types/react": "^18.3.3",
"eslint": "^8.56.0",
"eslint-config-moon": "^2.0.14",
"lerna": "^7.4.2",
"packemon": "^3.2.3",
"prettier": "^3.3.3",
"prettier-config-moon": "^1.1.2",
"react": "^18.2.0",
"rimraf": "^5.0.5",
"tsconfig-moon": "^1.3.0",
"typescript": "^5.5.4"
},
"workspaces": [
"packages/*",
"website"
],
"packageManager": "[email protected]"
}