-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.46 KB
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
{
"name": "opensilver",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "OpenSilver monorepo scaffold for SilverScript covenant patterns and tooling.",
"packageManager": "npm@10.9.2",
"workspaces": [
"sdk",
"cli",
"mcp",
"wizard",
"integrations",
"docs/site"
],
"scripts": {
"bootstrap:silverc": "bash scripts/bootstrap-silverc.sh",
"patch:silverc:zk": "bash scripts/apply-silverscript-opzkprecompile-patch.sh",
"build": "tsc -b sdk cli mcp wizard integrations",
"clean": "rm -rf sdk/dist cli/dist mcp/dist wizard/dist integrations/dist coverage docs/site/.docusaurus",
"docs:build": "npm run build --workspace @opensilver/docs-site",
"docs:start": "npm run start --workspace @opensilver/docs-site",
"manifests:generate": "npm run build && node scripts/generate-manifest-artifacts.mjs",
"manifests:check": "npm run manifests:generate && git diff --exit-code -- artifacts/manifests",
"wizard:build": "npm run manifests:generate && node wizard/src/build.mjs",
"wizard:check": "npm run wizard:build && git diff --exit-code -- wizard/build",
"test": "vitest run",
"test:watch": "vitest",
"test:runtime": "cargo test --manifest-path runtime-tests/Cargo.toml",
"typecheck": "tsc -b sdk cli mcp wizard integrations",
"verify": "npm run typecheck && npm run test"
},
"devDependencies": {
"@types/node": "^24.10.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}