-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 KB
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
36
37
38
{
"private": true,
"name": "@livekit/components-docs-gen",
"version": "0.0.96",
"description": "Generate component docs.",
"license": "Apache 2.0",
"author": "LiveKit",
"repository": {
"type": "git",
"url": "https://github.com/livekit/components-js.git",
"directory": "eslint-plugin-tsdoc"
},
"scripts": {
"gen:docs": "pnpm gather-api-files && pnpm gen:api-documenter && pnpm format-gen-docs",
"gather-api-files": "mkdir -p ./temp && cp ./../../packages/react/temp/*.api.json ./temp/ && cp ./../../packages/core/temp/*.api.json ./temp/",
"gen:api-documenter": "api-documenter markdown --input-folder ./temp --output-folder ../../docs/docs/generated-docs",
"format-gen-docs": "prettier --write \"./../../docs/docs/**/*.md\" --loglevel warn --single-quote false --trailing-comma none",
"lint": "eslint -f unix \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit"
},
"sideEffects": false,
"dependencies": {
"@livekit/api-documenter": "workspace:*",
"@livekit/components-react": "workspace:*",
"eslint-config-lk-custom": "workspace:*"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.35.2",
"eslint": "^8.56.0"
},
"keywords": [
"docs",
"props"
],
"publishConfig": {
"access": "restricted"
}
}