-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
39 lines (39 loc) · 1.62 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
36
37
38
39
{
"private": true,
"workspaces": {
"packages": [
"tests/conformance",
"typescript/benchmarks",
"typescript/core",
"typescript/examples/*",
"typescript/support",
"typescript/nodejs",
"typescript/browser",
"website"
]
},
"scripts": {
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"docs:swift:start": "swift package --disable-sandbox preview-documentation --target MCAP",
"typedoc": "yarn typescript:build && typedoc --out __docs__/typescript --options typescript/typedoc.json",
"start": "yarn workspace website start",
"spellcheck": "cspell --relative '**'",
"typescript:test": "yarn jest --config typescript/jest.config.json",
"typescript:build": "yarn workspace @mcap/core build && yarn workspace @mcap/support build && yarn workspace @mcap/nodejs build && yarn workspace @mcap/browser build",
"typescript:clean": "yarn workspace @mcap/core build --clean && yarn workspace @mcap/support build --clean && yarn workspace @mcap/nodejs build --clean && yarn workspace @mcap/browser build --clean",
"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": "yarn@4.5.1",
"devDependencies": {
"@types/node": "18.13.0",
"cspell": "8.0.0",
"jest": "29.7.0",
"prettier": "3.1.0",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "0.25.3",
"typescript": "5.2.2"
}
}