-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.21 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
{
"name": "async-pipeline-workspace",
"private": true,
"license": "MIT",
"version": "0.9.36",
"type": "module",
"packageManager": "pnpm@11.1.0",
"engines": {
"node": ">=24"
},
"scripts": {
"async-pipeline": "node packages/pipeline-node/dist/cli.js",
"build": "pnpm -r --sort build",
"claims:check": "node scripts/check-claims.mjs",
"docs:check": "node scripts/check-docs.mjs",
"drift:check": "node scripts/check-release-drift.mjs",
"exports:check": "node scripts/check-exports.mjs",
"hygiene:check": "async-hygiene check",
"pack:check": "pnpm --filter @async/pipeline pack:check",
"pipeline:api-surface": "async-pipeline run-task api-surface",
"pipeline:api-surface:generate": "async-pipeline run-task api-surface-generate",
"pipeline:github:check": "async-pipeline github check",
"pipeline:github:generate": "async-pipeline github generate",
"pipeline:pages": "async-pipeline run-task docs.site",
"pipeline:publish": "async-pipeline run publish",
"pipeline:publish:github:main": "async-pipeline publish github main --package packages/pipeline",
"pipeline:publish:github:pr": "async-pipeline publish github pr --package packages/pipeline",
"pipeline:publish:github:release": "async-pipeline publish github release --package packages/pipeline",
"pipeline:publish:npm": "async-pipeline publish npm --package packages/pipeline",
"pipeline:release:doctor": "async-pipeline release doctor --package packages/pipeline",
"pipeline:release:ensure": "async-pipeline release ensure --package packages/pipeline",
"pipeline:snapshot": "async-pipeline run snapshot",
"pipeline:sync:check": "async-pipeline sync check",
"pipeline:task:docs.site": "async-pipeline run-task docs.site",
"pipeline:verify": "async-pipeline run verify",
"pipeline:verifyImpact": "async-pipeline run verifyImpact",
"release:check": "pnpm run build && pnpm run pipeline:verify -- --force",
"test": "node --test tests/*.test.js",
"typecheck": "pnpm -r --sort typecheck"
},
"devDependencies": {
"@async/api-contract": "0.1.0",
"@async/hygiene": "0.1.0",
"@async/pipeline": "workspace:*",
"@types/node": "24.12.4",
"typescript": "6.0.3"
}
}