-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "script2builtins-workspace",
"private": true,
"version": "0.0.0",
"description": "Monorepo root for script2builtins (static AST analyzer), script2builtins-runtime (Playwright-driven dynamic analyzer), and script2builtins-knowledge (shared API catalog). Each package versions and publishes independently; the root is private and exists only to coordinate installs, builds, and tests.",
"type": "module",
"workspaces": [
"packages/script2builtins-knowledge",
"packages/script2builtins",
"packages/script2builtins-runtime"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules"
},
"engines": {
"node": ">=20"
},
"license": "MIT"
}