forked from foxglove/mcap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1015 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
26
27
28
{
"private": true,
"workspaces": {
"packages": [
"tests/conformance",
"typescript/benchmarks",
"typescript/core",
"typescript/examples/*",
"website"
]
},
"scripts": {
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"docs:swift:start": "swift package --disable-sandbox preview-documentation --target MCAP",
"typedoc": "typedoc --out __docs__/typescript typescript/core/src/index.ts --tsconfig typescript/core/tsconfig.json",
"start": "yarn workspace website start",
"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\""
},
"packageManager": "[email protected]",
"devDependencies": {
"cspell": "^6.26.3",
"prettier": "^2.8.4",
"typedoc": "^0.23.25"
}
}