-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 1.55 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
{
"name": "augment-byok",
"private": true,
"version": "0.0.0",
"description": "Build single VSIX by patching upstream augment.vscode-augment (in-process BYOK shim)",
"type": "commonjs",
"scripts": {
"build:vsix": "node tools/build/build-vsix.js",
"gen": "npm run gen:llm-endpoints && npm run gen:provider-types",
"gen:llm-endpoints": "node tools/gen/sync-llm-endpoints.js --write",
"gen:provider-types": "node tools/gen/sync-provider-types.js --write",
"check:fast": "npm run check:llm-endpoints && npm run check:provider-types && npm run check:provider-dispatch && npm run check:payload-syntax && npm run check:codestyle && npm test",
"check": "npm run check:fast && npm run check:contracts",
"check:llm-endpoints": "node tools/gen/sync-llm-endpoints.js --check",
"check:provider-types": "node tools/gen/sync-provider-types.js --check",
"check:provider-dispatch": "node tools/check/provider-type-dispatch.js",
"check:payload-syntax": "node tools/check/node-check-js.js",
"check:codestyle": "node tools/check/codestyle.js",
"capture:logs": "node tools/check/capture-vscode-logs.js",
"check:official-delegation": "node tools/check/official-delegation-audit.js --strict",
"check:contracts": "node tools/check/run-contracts-cached-upstream.js",
"test": "node --test test/*.test.js",
"upstream:analyze": "node tools/build/upstream-analyze.js",
"report:coverage": "node tools/report/endpoint-coverage.js --analysis .cache/reports/upstream-analysis.json --out dist/endpoint-coverage.report.md --fail-fast"
}
}