-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.42 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "geotechcli-monorepo",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"verify:consistency": "node scripts/verify-release-consistency.mjs",
"smoke:web": "node scripts/smoke-web-routes.mjs",
"smoke:fem:webgl": "node scripts/smoke-fem-webgl.mjs --demo all --out __fem-webgl-smoke",
"smoke:fem:webgl:fallback": "node scripts/smoke-fem-webgl.mjs --demo all --out __fem-webgl-fallback-smoke --force-fallback",
"smoke:fem:renderers": "npm run smoke:fem:webgl && npm run smoke:fem:webgl:fallback",
"smoke:fem:draft-run": "node scripts/smoke-fem-draft-run.mjs --out __fem-draft-run-smoke",
"smoke:geotech-report-benchmark": "node scripts/smoke-geotech-report-benchmark-guardrails.mjs",
"smoke:signal-analysis": "node scripts/benchmark-signal-analysis.mjs --out __signal-analysis-smoke",
"smoke:agent-tasks": "node scripts/benchmark-agent-tasks.mjs --out __agent-tasks-smoke",
"smoke:byok": "npm run --workspace=@geotechcli/core build && node scripts/smoke-byok-providers.mjs",
"benchmark:geotech-report": "node scripts/benchmark-geotech-report.mjs",
"benchmark:geotech-corpus": "node scripts/benchmark-geotech-corpus.mjs",
"benchmark:preprocessing": "node scripts/benchmark-preprocessing-fixtures.mjs",
"benchmark:signal-analysis": "node scripts/benchmark-signal-analysis.mjs",
"benchmark:agent-tasks": "node scripts/benchmark-agent-tasks.mjs",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && node scripts/publish-npm-workspaces.mjs",
"release:npm": "node scripts/publish-npm-workspaces.mjs",
"verify:surfaces": "node scripts/verify-release-surfaces.mjs",
"verify:surfaces:beta": "node scripts/verify-release-surfaces.mjs --channel beta"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^24.0.0",
"playwright": "^1.59.1",
"turbo": "^2.4.0",
"typescript": "^5.7.0"
},
"overrides": {
"@aws-sdk/xml-builder": "3.972.24",
"fast-xml-builder": "1.2.0",
"fast-xml-parser": "5.7.3",
"postcss": "8.5.23",
"form-data": "4.0.6",
"js-yaml": "4.3.0",
"tmp": "0.2.7",
"vite": "8.1.5"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "npm@10.0.0"
}