-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.24 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.24 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@async/flow",
"version": "0.10.0",
"description": "Portable store, async signal, and handler runtime for Async packages.",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.8.0",
"engines": {
"node": ">=24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/async/flow.git"
},
"bugs": {
"url": "https://github.com/async/flow/issues"
},
"homepage": "https://async.github.io/flow/",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"default": "./src/index.js"
},
"./protocol": {
"types": "./src/protocol.d.ts",
"import": "./src/protocol.js",
"default": "./src/protocol.js"
},
"./define": {
"types": "./src/define.d.ts",
"import": "./src/define.js",
"default": "./src/define.js"
},
"./runtime": {
"types": "./src/runtime.d.ts",
"import": "./src/runtime.js",
"default": "./src/runtime.js"
},
"./framework-runtime": {
"types": "./src/framework-runtime.d.ts",
"import": "./src/framework-runtime.js",
"default": "./src/framework-runtime.js"
},
"./async-signal": {
"types": "./src/async-signal.d.ts",
"import": "./src/async-signal.js",
"default": "./src/async-signal.js"
},
"./compose": {
"types": "./src/compose.d.ts",
"import": "./src/compose.js",
"default": "./src/compose.js"
},
"./helpers": {
"types": "./src/helpers.d.ts",
"import": "./src/helpers.js",
"default": "./src/helpers.js"
},
"./helpers/core": {
"types": "./src/helpers/core.d.ts",
"import": "./src/helpers/core.js",
"default": "./src/helpers/core.js"
},
"./steps": {
"types": "./src/steps.d.ts",
"import": "./src/steps.js",
"default": "./src/steps.js"
},
"./scheduler": {
"types": "./src/scheduler.d.ts",
"import": "./src/scheduler.js",
"default": "./src/scheduler.js"
},
"./graph": {
"types": "./src/graph.d.ts",
"import": "./src/graph.js",
"default": "./src/graph.js"
},
"./builder": {
"types": "./src/builder.d.ts",
"import": "./src/builder.js",
"default": "./src/builder.js"
}
},
"scripts": {
"async-pipeline": "async-pipeline",
"pack:check": "npm --cache .async/npm-cache pack --dry-run --json --ignore-scripts",
"pipeline:docs": "async-pipeline run-task docs.site",
"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 .",
"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: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:verify": "async-pipeline run verify",
"pipeline:verify:force": "async-pipeline run verify --force",
"release:check": "pnpm run pipeline:verify:force",
"test": "node --test tests/*.test.js",
"typecheck": "node scripts/typecheck.js"
},
"files": [
"CHANGELOG.md",
"docs",
"LICENSE",
"README.md",
"src"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"devDependencies": {
"@async/pipeline": "0.9.30"
}
}