-
Notifications
You must be signed in to change notification settings - Fork 445
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.65 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
{
"devDependencies": {
"@actions/artifact": "^6.2.1",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/github-script": "github:actions/github-script#v9.0.0",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"@github/copilot-sdk": "^1.0.4",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.1.8",
"@vitest/ui": "^4.1.9",
"minimatch": ">=3.1.3",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"vite": "^8.1.0",
"vitest": "^4.1.10"
},
"overrides": {
"undici": "^6.23.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && vitest run --no-file-parallelism",
"test:js": "vitest run",
"test:js-integration-live-api": "vitest run --config vitest.integration.config.mjs --no-file-parallelism",
"test:js-integration-artifact": "vitest run --config vitest.artifact-integration.config.mjs --no-file-parallelism",
"test:js-watch": "vitest",
"test:js-coverage": "vitest run --coverage",
"format:cjs": "npx prettier --write '**/*.cjs' '**/*.ts' '**/*.json' --ignore-path ../../../.prettierignore",
"lint:cjs": "npx prettier --check '**/*.cjs' '**/*.ts' '**/*.json' --ignore-path ../../../.prettierignore",
"format:schema": "npx prettier --write ../../../pkg/workflow/schemas/github-workflow.json --ignore-path /dev/null",
"format:pkg-json": "npx prettier --write '../../../**/*.json' '!../../../pkg/workflow/js/**/*.json' --ignore-path ../../../.prettierignore",
"check:pkg-json": "npx prettier --check '../../../**/*.json' '!../../../pkg/workflow/js/**/*.json' --ignore-path ../../../.prettierignore"
}
}