-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 923 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 923 Bytes
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
{
"name": "manywidgets",
"version": "0.1.0",
"private": true,
"description": "Build pipeline for the manywidgets anywidget bundles (esbuild over each widget + the shared @manywidgets/core module).",
"type": "module",
"scripts": {
"build": "node scripts/build.mjs",
"watch": "node scripts/build.mjs --watch",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest",
"docs:gen": "python scripts/build_widget_docs.py",
"skill:gen": "python scripts/build_skill_reference.py",
"serve": "python -m http.server -d docs/_build/html 3030",
"clean": "rm -rf src/manywidgets/*/dist"
},
"devDependencies": {
"@anywidget/types": "^0.2.0",
"esbuild": "^0.25.0",
"jsdom": "^25.0.0",
"mystmd": "^1.8.3",
"typescript": "^5.4.0",
"vitest": "^2.1.0"
},
"dependencies": {
"chart.js": "^4.4.0",
"marked": "^14.0.0"
}
}