-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.13 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
{
"name": "guardstep-workspace",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace guardstep",
"check": "npm run check --workspace guardstep && npm run build --silent && tsc --project examples/document-qa/tsconfig.json && tsc --project examples/branching/tsconfig.json",
"check:generated": "npm run build --silent && ./gs generate examples/document-qa/answer.guard --check && ./gs generate examples/branching/decide.guard --check",
"check:release": "node scripts/verify-release.mjs",
"demo:ollama": "npm run build --silent && ./gs run examples/document-qa/answer.guard --host examples/document-qa/answer.ollama.host.mjs",
"test": "npm run test --workspace guardstep",
"test:release": "node --test scripts/verify-release.test.mjs",
"test:package": "node scripts/verify-package.mjs",
"guardstep": "node packages/guardstep/dist/cli/main.js",
"gs": "node packages/guardstep/dist/cli/main.js"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "22.20.1",
"typescript": "7.0.2"
}
}