-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@async/cli",
"version": "0.2.1",
"description": "Filesystem-routed project and user-global commands for Async workspaces.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/async/cli.git"
},
"bugs": {
"url": "https://github.com/async/cli/issues"
},
"homepage": "https://async.github.io/cli/",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"bin": {
"cli": "dist/cli.js",
"async-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js",
"check": "node scripts/check.js",
"local:link": "pnpm run build && node scripts/local-link.js link",
"local:status": "node scripts/local-link.js status",
"local:unlink": "node scripts/local-link.js unlink",
"pack:check": "pnpm run build && npm --cache .async/npm-cache pack --dry-run --json --ignore-scripts",
"pipeline:build": "async-pipeline run-task build",
"pipeline:check": "async-pipeline run-task check",
"pipeline:github:check": "async-pipeline github check",
"pipeline:github:generate": "async-pipeline github generate",
"pipeline:pack": "async-pipeline run-task pack",
"pipeline:pages": "async-pipeline run-task docs.site",
"pipeline:publish": "async-pipeline run publish",
"pipeline:publish:github:main": "async-pipeline publish github main --package .",
"pipeline:publish:github:pr": "async-pipeline publish github pr --package .",
"pipeline:publish:github:release": "async-pipeline publish github release --package .",
"pipeline:publish:npm": "async-pipeline publish npm --package .",
"pipeline:release-doctor": "async-pipeline run release-doctor",
"pipeline:release:doctor": "async-pipeline release doctor --package .",
"pipeline:release:ensure": "async-pipeline release ensure --package .",
"pipeline:snapshot": "async-pipeline run snapshot",
"pipeline:sync:check": "async-pipeline sync check",
"pipeline:sync:generate": "async-pipeline sync generate",
"pipeline:task:build": "async-pipeline run-task build",
"pipeline:task:check": "async-pipeline run-task check",
"pipeline:task:docs.site": "async-pipeline run-task docs.site",
"pipeline:task:github.check": "async-pipeline run-task github.check",
"pipeline:task:pack": "async-pipeline run-task pack",
"pipeline:task:sync.check": "async-pipeline run-task sync.check",
"pipeline:task:test": "async-pipeline run-task test",
"pipeline:task:typecheck": "async-pipeline run-task typecheck",
"pipeline:test": "async-pipeline run-task test",
"pipeline:typecheck": "async-pipeline run-task typecheck",
"pipeline:verify": "async-pipeline run verify",
"pipeline:verify:force": "async-pipeline run verify --force",
"prepack": "pnpm run build",
"release:check": "pnpm run pipeline:verify:force",
"test": "pnpm run build && node --test tests/*.test.js"
},
"files": [
"AGENTS.md",
"API_SURFACE.md",
"CHANGELOG.md",
"README.md",
"ROUTING.md",
"SPEC.md",
"scripts/local-link.js",
"dist"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"devDependencies": {
"@async/pipeline": "0.9.33",
"@types/node": "24.12.4",
"typescript": "6.0.3"
}
}