-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 3.5 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
{
"name": "clarissimi",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"benchmark:cli-io": "pnpm run build && node scripts/benchmark-cli-io.mjs --check",
"benchmark:cli-io:sample": "pnpm run build && node scripts/benchmark-cli-io.mjs --samples 3",
"benchmark:scale": "pnpm run build && node scripts/benchmark-scale.mjs --check",
"benchmark:scale:sample": "pnpm run build && node scripts/benchmark-scale.mjs --samples 3",
"build": "tsc -b",
"bundle:action": "pnpm run build && node scripts/bundle-action.mjs",
"bundle:action:check": "pnpm run build && node scripts/bundle-action.mjs --check",
"bundle:cli-package": "pnpm run build && node scripts/build-standalone-cli-package.mjs",
"format": "oxfmt --check",
"lint": "oxlint . --deny-warnings --ignore-pattern=action-dist/**",
"typecheck": "tsc -b --pretty false",
"test": "pnpm run build && node --test packages/schemas/test/*.test.mjs packages/redaction/test/*.test.mjs packages/core/test/*.test.mjs packages/github/test/*.test.mjs packages/providers/test/*.test.mjs packages/renderers/test/*.test.mjs packages/cli/test/*.test.mjs packages/action/test/*.test.mjs scripts/test/*.test.mjs",
"test:automation-contributors": "pnpm run build && node --test packages/schemas/test/*.test.mjs packages/github/test/*.test.mjs packages/renderers/test/*.test.mjs packages/cli/test/*.test.mjs packages/action/test/*.test.mjs",
"test:cli-completion": "pnpm run build && node --test packages/cli/test/completion.test.mjs",
"test:cli-lock": "pnpm run build && node --test \"--test-name-pattern=(file (operations|locks)|import-draft serializes concurrent ledger updates)\" packages/cli/test/cli.test.mjs",
"contract": "pnpm run typecheck && pnpm run test",
"migration-check": "pnpm run build && node scripts/migration-check.mjs",
"smoke": "pnpm run build && node scripts/smoke.mjs",
"live-provider-smoke": "pnpm run build && node scripts/live-provider-smoke.mjs",
"provider-model-eval": "pnpm run build && node scripts/provider-model-eval.mjs",
"hosted-ci-validation": "node scripts/hosted-ci-validation.mjs",
"hosted-toolchain-validation": "node scripts/hosted-ci-validation.mjs --workflow toolchain-platform-smoke.yml",
"hosted-external-consumer-smoke": "node scripts/hosted-external-consumer-smoke.mjs",
"hosted-live-provider-smoke": "node scripts/hosted-live-provider-smoke.mjs",
"verify-action-major-tag": "node scripts/verify-action-major-tag.mjs",
"verify-marketplace-release": "node scripts/verify-marketplace-release.mjs",
"release-candidate-evidence-orchestrator": "node scripts/release-candidate-evidence-orchestrator.mjs",
"publish-action-release": "node scripts/publish-action-release.mjs",
"promote-action-major-alias": "node scripts/promote-action-major-alias.mjs",
"release-evidence-cleanup": "node scripts/release-evidence-cleanup.mjs",
"release-candidate-evidence-issue": "node scripts/release-candidate-evidence-issue.mjs",
"release-readiness": "node scripts/release-readiness.mjs",
"retire-historical-command-intents": "node scripts/retire-historical-command-intents.mjs",
"verify:cli-package": "pnpm run build && node scripts/verify-standalone-cli-package.mjs",
"docs": "node scripts/validate-docs.mjs",
"check": "pnpm run typecheck && pnpm run test"
},
"devDependencies": {
"@types/node": "26.2.0",
"esbuild": "0.28.2",
"oxfmt": "0.62.0",
"oxlint": "1.77.0",
"typescript": "^7.0.2"
},
"packageManager": "[email protected]"
}