-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
16 lines (16 loc) · 670 Bytes
/
package.json
File metadata and controls
16 lines (16 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "infermap-workspace",
"private": true,
"version": "0.0.0",
"description": "Root orchestrator for the infermap Python package and infermap-js TypeScript port. Not a real npm workspace — each package installs independently to avoid Windows symlink issues.",
"mcp": {
"package": "packages/infermap-js",
"ignore": ["benchmark", "bench-calibrators", "examples"]
},
"scripts": {
"install:js": "npm --prefix packages/infermap-js install",
"build:js": "npm --prefix packages/infermap-js run build",
"test:js": "npm --prefix packages/infermap-js run test",
"typecheck:js": "npm --prefix packages/infermap-js run typecheck"
}
}