forked from foxglove/mcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 964 Bytes
/
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
{
"private": true,
"workspaces": {
"packages": [
"typescript/core",
"typescript/benchmarks",
"typescript/examples/*",
"tests/conformance"
]
},
"scripts": {
"docs:lint": "prettier '**/*.md' 'docs/**' --check",
"docs:build": "tailwindcss --config docs/gh-pages/tailwind.config.js -i docs/gh-pages/style.css -o docs/gh-pages/dist/bundle.css",
"typedoc": "typedoc --out __docs__/typescript typescript/core/src/index.ts --tsconfig typescript/core/tsconfig.json",
"spellcheck": "cspell --relative '**'",
"test:conformance:generate-inputs": "yarn workspace @foxglove/mcap-conformance generate-inputs --data-dir \"$(pwd)/tests/conformance/data\"",
"test:conformance": "yarn workspace @foxglove/mcap-conformance run-tests --data-dir \"$(pwd)/tests/conformance/data\""
},
"devDependencies": {
"cspell": "^5.18.0",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.23",
"typedoc": "^0.22.13"
}
}