-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 806 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "tensor-viz-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/viewer-core",
"packages/viewer-demo"
],
"scripts": {
"build": "npm run build --workspace @tensor-viz/viewer-core && npm run build --workspace @tensor-viz/viewer-demo && node tools/sync-demo-assets.mjs",
"dev": "npm run dev --workspace @tensor-viz/viewer-demo",
"docs": "npm run docs:ts && npm run docs:py",
"docs:py": "python -m sphinx -b html docs docs/_build/html",
"docs:ts": "typedoc --options typedoc.json",
"test": "npm run test --workspace @tensor-viz/viewer-core && npm run test --workspace @tensor-viz/viewer-demo && PYTHONPATH=python/src python -m unittest discover -s python/tests -p 'test_*.py'"
},
"devDependencies": {
"typedoc": "^0.28.17"
}
}