@pulse-compute/cli 0.0.0 → 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/API.md +572 -0
- package/CHANGELOG.md +71 -0
- package/README.md +71 -1
- package/bin/pulse.js +15 -0
- package/bin/pulsewasm-extract.js +22 -0
- package/cli-spec.json +575 -0
- package/completions/_pulse +106 -0
- package/completions/pulse.bash +31 -0
- package/completions/pulse.fish +76 -0
- package/docs/README.md +77 -0
- package/docs/architecture/current-contracts.md +470 -0
- package/docs/architecture/overview.md +93 -0
- package/docs/architecture/vision.md +515 -0
- package/docs/concepts/bodies.md +186 -0
- package/docs/concepts/compilation-and-lowering.md +496 -0
- package/docs/concepts/contracts-and-providers.md +158 -0
- package/docs/concepts/effects-and-continuations.md +300 -0
- package/docs/concepts/entities-and-adapters.md +71 -0
- package/docs/concepts/package-owned-lowering.md +175 -0
- package/docs/concepts/targets-and-hosts.md +70 -0
- package/docs/contributing/README.md +38 -0
- package/docs/contributing/adding-core-provider.md +315 -0
- package/docs/contributing/adding-first-party-lowerer.md +327 -0
- package/docs/contributing/entities-lowering.md +91 -0
- package/docs/contributing/package-lowerer-contract.md +383 -0
- package/docs/contributing/pulse-aware-packages.md +149 -0
- package/docs/examples.md +112 -0
- package/docs/fixtures/inspect-fetch-composition.selected.json +181 -0
- package/docs/getting-started.md +128 -0
- package/docs/guides/compatibility-imports.md +60 -0
- package/docs/guides/deploying-fastly.md +188 -0
- package/docs/guides/deploying-node.md +143 -0
- package/docs/guides/events.md +233 -0
- package/docs/guides/fastly-capabilities.md +153 -0
- package/docs/guides/fetching-and-composition.md +101 -0
- package/docs/guides/grip.md +94 -0
- package/docs/guides/json-schemas.md +233 -0
- package/docs/guides/migrating-from-express.md +192 -0
- package/docs/guides/project-lifecycle.md +143 -0
- package/docs/guides/routing.md +202 -0
- package/docs/guides/troubleshooting.md +47 -0
- package/docs/maintainers/README.md +60 -0
- package/docs/maintainers/codex-maintainer.md +71 -0
- package/docs/maintainers/documentation-deployment.md +147 -0
- package/docs/maintainers/documentation-system.md +58 -0
- package/docs/maintainers/documentation-versioning.md +65 -0
- package/docs/maintainers/maintainer-charter.md +100 -0
- package/docs/maintainers/maintenance-policy.json +809 -0
- package/docs/maintainers/maintenance-policy.md +124 -0
- package/docs/maintainers/npm-publishing.md +154 -0
- package/docs/maintainers/plugin-readiness.json +19 -0
- package/docs/maintainers/plugin-readiness.md +31 -0
- package/docs/maintainers/public-site.md +158 -0
- package/docs/maintainers/release-acceptance.md +293 -0
- package/docs/maintainers/release-manifest.md +89 -0
- package/docs/maintainers/repository-setup.md +145 -0
- package/docs/maintainers/scope-policy.md +105 -0
- package/docs/maintainers/support-and-triage.md +74 -0
- package/docs/maintainers/testing.md +334 -0
- package/docs/packages/README.md +60 -0
- package/docs/packages/assets.md +85 -0
- package/docs/packages/cli.md +190 -0
- package/docs/packages/crypto.md +78 -0
- package/docs/packages/entities.md +129 -0
- package/docs/packages/grip.md +82 -0
- package/docs/packages/implementation-packages.md +122 -0
- package/docs/packages/jwt.md +55 -0
- package/docs/packages/provider-fastly.md +243 -0
- package/docs/packages/pulse.md +159 -0
- package/docs/packages/runtime.md +265 -0
- package/docs/packages/s3.md +101 -0
- package/docs/preview-scope.md +142 -0
- package/docs/reference/README.md +33 -0
- package/docs/reference/cli-spec.json +575 -0
- package/docs/reference/cli.md +457 -0
- package/docs/reference/compatibility-matrix.md +169 -0
- package/docs/reference/diagnostics.md +1872 -0
- package/docs/reference/documentation-versions.json +22 -0
- package/docs/reference/environment.md +347 -0
- package/docs/reference/handler-authoring.md +264 -0
- package/docs/reference/project-config.md +582 -0
- package/docs/reference/project-config.schema.json +981 -0
- package/docs/reference/release-manifest.json +441 -0
- package/docs/reference/shell-completion.md +23 -0
- package/documentation-site.json +668 -0
- package/documentation-versions.json +22 -0
- package/examples/01-hello-json/.pulse/.gitignore +3 -0
- package/examples/01-hello-json/.pulse/config.ts +16 -0
- package/examples/01-hello-json/README.md +119 -0
- package/examples/01-hello-json/package.json +20 -0
- package/examples/01-hello-json/src/index.ts +9 -0
- package/examples/01-hello-json/tests/pulse.harness.ts +22 -0
- package/examples/01-hello-json/tsconfig.json +14 -0
- package/examples/02-request-schema/.pulse/.gitignore +3 -0
- package/examples/02-request-schema/.pulse/config.ts +17 -0
- package/examples/02-request-schema/README.md +145 -0
- package/examples/02-request-schema/package.json +20 -0
- package/examples/02-request-schema/src/index.ts +18 -0
- package/examples/02-request-schema/src/schemas.ts +20 -0
- package/examples/02-request-schema/tests/pulse.harness.ts +37 -0
- package/examples/02-request-schema/tsconfig.json +14 -0
- package/examples/03-fetch-composition/.pulse/.gitignore +3 -0
- package/examples/03-fetch-composition/.pulse/config.ts +31 -0
- package/examples/03-fetch-composition/README.md +210 -0
- package/examples/03-fetch-composition/package.json +20 -0
- package/examples/03-fetch-composition/src/index.ts +60 -0
- package/examples/03-fetch-composition/tests/pulse.harness.ts +47 -0
- package/examples/03-fetch-composition/tsconfig.json +14 -0
- package/examples/05-fastly-capabilities/.pulse/.gitignore +3 -0
- package/examples/05-fastly-capabilities/.pulse/config.ts +57 -0
- package/examples/05-fastly-capabilities/README.md +257 -0
- package/examples/05-fastly-capabilities/package.json +22 -0
- package/examples/05-fastly-capabilities/src/index.ts +55 -0
- package/examples/05-fastly-capabilities/tests/pulse.harness.ts +66 -0
- package/examples/05-fastly-capabilities/tsconfig.json +14 -0
- package/examples/07-opaque-proxy/.pulse/.gitignore +3 -0
- package/examples/07-opaque-proxy/.pulse/config.ts +38 -0
- package/examples/07-opaque-proxy/README.md +150 -0
- package/examples/07-opaque-proxy/package.json +21 -0
- package/examples/07-opaque-proxy/src/index.ts +9 -0
- package/examples/07-opaque-proxy/tests/pulse.harness.ts +25 -0
- package/examples/07-opaque-proxy/tsconfig.json +14 -0
- package/examples/09-router-lowering/.pulse/.gitignore +3 -0
- package/examples/09-router-lowering/.pulse/config.ts +22 -0
- package/examples/09-router-lowering/README.md +287 -0
- package/examples/09-router-lowering/package.json +22 -0
- package/examples/09-router-lowering/src/index.ts +65 -0
- package/examples/09-router-lowering/tests/pulse.harness.ts +91 -0
- package/examples/09-router-lowering/tsconfig.json +14 -0
- package/examples/10-entities-tools/.pulse/.gitignore +4 -0
- package/examples/10-entities-tools/.pulse/config.ts +23 -0
- package/examples/10-entities-tools/README.md +165 -0
- package/examples/10-entities-tools/package.json +21 -0
- package/examples/10-entities-tools/src/handlers.ts +15 -0
- package/examples/10-entities-tools/src/index.ts +31 -0
- package/examples/10-entities-tools/src/schemas.ts +18 -0
- package/examples/10-entities-tools/tests/pulse.harness.ts +40 -0
- package/examples/10-entities-tools/tools-facade.cjs +158 -0
- package/examples/10-entities-tools/tsconfig.json +14 -0
- package/examples/11-events/.pulse/.gitignore +4 -0
- package/examples/11-events/.pulse/config.ts +24 -0
- package/examples/11-events/README.md +194 -0
- package/examples/11-events/package.json +20 -0
- package/examples/11-events/src/index.ts +27 -0
- package/examples/11-events/src/schemas.ts +19 -0
- package/examples/11-events/tests/pulse.harness.ts +34 -0
- package/examples/11-events/tsconfig.json +15 -0
- package/examples/12-mcp-proxy/.pulse/.gitignore +3 -0
- package/examples/12-mcp-proxy/.pulse/config.ts +25 -0
- package/examples/12-mcp-proxy/README.md +149 -0
- package/examples/12-mcp-proxy/package.json +20 -0
- package/examples/12-mcp-proxy/src/index.ts +17 -0
- package/examples/12-mcp-proxy/tests/pulse.harness.ts +29 -0
- package/examples/12-mcp-proxy/tsconfig.json +14 -0
- package/examples/13-jwt-es256/.pulse/config.ts +19 -0
- package/examples/13-jwt-es256/README.md +195 -0
- package/examples/13-jwt-es256/package.json +21 -0
- package/examples/13-jwt-es256/src/index.ts +21 -0
- package/examples/13-jwt-es256/tests/pulse.harness.ts +54 -0
- package/examples/13-jwt-es256/tsconfig.json +14 -0
- package/examples/README.md +36 -0
- package/package.json +66 -6
- package/project-config.schema.json +981 -0
- package/release-manifest.json +441 -0
- package/src/command-spec.js +279 -0
- package/src/completion.js +113 -0
- package/src/diagnostics.js +350 -0
- package/src/documentation.js +45 -0
- package/src/index.d.ts +133 -0
- package/src/index.js +15 -0
- package/src/internal/command-executor.d.ts +29 -0
- package/src/internal/command-executor.js +143 -0
- package/src/internal/command-plan.d.ts +9 -0
- package/src/internal/command-plan.js +73 -0
- package/src/internal/command-reporter.d.ts +15 -0
- package/src/internal/command-reporter.js +133 -0
- package/src/internal/command-request.d.ts +35 -0
- package/src/internal/command-request.js +154 -0
- package/src/internal/node-http.js +54 -0
- package/src/internal/project-context.d.ts +66 -0
- package/src/internal/project-context.js +175 -0
- package/src/project-config-reference.js +4 -0
- package/src/project-config-schema.d.ts +23 -0
- package/src/project-config-schema.js +271 -0
- package/src/project-config.js +724 -0
- package/src/project-execution.js +2946 -0
- package/src/provider-drivers.js +3 -0
- package/src/target-support.js +3 -0
- package/src/typescript-module-loader.js +269 -0
- package/src/workflow.js +78 -0
- package/src/workspace.js +82 -0
|
@@ -0,0 +1,441 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "pulse.release-catalog.v1",
|
|
3
|
+
"releaseVersion": "1.0.0-beta.2",
|
|
4
|
+
"channel": "beta",
|
|
5
|
+
"releasedAt": "2026-09-13",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"display": {
|
|
8
|
+
"productName": "Pulse",
|
|
9
|
+
"candidateLabel": "Beta",
|
|
10
|
+
"candidateName": "Pulse 1.0.0-beta.2 — Beta",
|
|
11
|
+
"activationStage": "documentation-release"
|
|
12
|
+
},
|
|
13
|
+
"legal": {
|
|
14
|
+
"licenseFile": "LICENSE",
|
|
15
|
+
"noticeFile": "NOTICE",
|
|
16
|
+
"noticeSha256": "8af1d352fb8a9d3ba372767b310fa53e28f2424ee052ead7cabbce547186bb6f",
|
|
17
|
+
"packageFiles": [
|
|
18
|
+
"LICENSE",
|
|
19
|
+
"NOTICE"
|
|
20
|
+
],
|
|
21
|
+
"packagePolicy": "exact-root-files-in-every-publishable-tarball"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/pulse-compute/pulse.git",
|
|
26
|
+
"web": "https://github.com/pulse-compute/pulse",
|
|
27
|
+
"bugs": "https://github.com/pulse-compute/pulse/issues"
|
|
28
|
+
},
|
|
29
|
+
"documentation": {
|
|
30
|
+
"origin": "https://pulsecompute.io",
|
|
31
|
+
"basePath": "/",
|
|
32
|
+
"version": "v1.0.0-beta.2",
|
|
33
|
+
"latestAlias": "latest",
|
|
34
|
+
"source": "docs/README.md"
|
|
35
|
+
},
|
|
36
|
+
"readiness": {
|
|
37
|
+
"preflight": "release/release-preflight.json",
|
|
38
|
+
"documentationInventory": "release/documentation-inventory.json",
|
|
39
|
+
"vocabulary": "release/release-preflight.json#releaseVocabulary",
|
|
40
|
+
"legalDisposition": "release/release-preflight.json#auditPolicy.dependencyLicenses.noticeDisposition",
|
|
41
|
+
"validationCommand": "npm run release:preflight",
|
|
42
|
+
"versionPreparation": {
|
|
43
|
+
"schemaVersion": "pulse.release-version-preparation.v1",
|
|
44
|
+
"metadataOwners": [
|
|
45
|
+
"release/release-preflight.json",
|
|
46
|
+
"release/documentation-site.json",
|
|
47
|
+
"release/documentation-deployment.json",
|
|
48
|
+
"release/plugin-readiness.json",
|
|
49
|
+
"release/maintenance-policy.json"
|
|
50
|
+
],
|
|
51
|
+
"literalOwners": [
|
|
52
|
+
"wasm/packages/wasm-guest-link/src/constants.js",
|
|
53
|
+
"wasm/packages/contracts/src/diagnostics.js",
|
|
54
|
+
"wasm/packages/cli/src/documentation.js",
|
|
55
|
+
"wasm/packages/cli/src/project-config-schema.js",
|
|
56
|
+
"packages/crypto/guests/es256-rustcrypto/pulse.guest-unit.json",
|
|
57
|
+
"packages/crypto/guests/es256-rustcrypto/build.cjs"
|
|
58
|
+
],
|
|
59
|
+
"dependencyManifestRoots": [
|
|
60
|
+
"examples",
|
|
61
|
+
"wasm/packages/cli/examples"
|
|
62
|
+
],
|
|
63
|
+
"replaceUnpublishedDocumentationClasses": [
|
|
64
|
+
"current-public",
|
|
65
|
+
"current-contributor"
|
|
66
|
+
],
|
|
67
|
+
"generatedPathPrefixes": [
|
|
68
|
+
"docs/reference/",
|
|
69
|
+
"wasm/packages/cli/docs/",
|
|
70
|
+
"wasm/packages/cli/examples/",
|
|
71
|
+
"wasm/packages/cli/completions/",
|
|
72
|
+
"packages/runtime/docs/"
|
|
73
|
+
],
|
|
74
|
+
"generatedExactPaths": [
|
|
75
|
+
".github/CODEOWNERS",
|
|
76
|
+
".github/labels.yml",
|
|
77
|
+
".github/codex/schemas/maintainer-review.schema.json",
|
|
78
|
+
"docs/packages/README.md",
|
|
79
|
+
"docs/packages/implementation-packages.md",
|
|
80
|
+
"docs/maintainers/maintenance-policy.md",
|
|
81
|
+
"docs/maintainers/maintenance-policy.json",
|
|
82
|
+
"docs/maintainers/plugin-readiness.md",
|
|
83
|
+
"docs/maintainers/plugin-readiness.json",
|
|
84
|
+
"docs/maintainers/release-manifest.md",
|
|
85
|
+
"wasm/packages/cli/src/documentation.js",
|
|
86
|
+
"wasm/packages/cli/cli-spec.json",
|
|
87
|
+
"wasm/packages/cli/project-config.schema.json",
|
|
88
|
+
"wasm/packages/cli/release-manifest.json",
|
|
89
|
+
"wasm/packages/cli/documentation-versions.json",
|
|
90
|
+
"wasm/packages/cli/documentation-site.json",
|
|
91
|
+
"wasm/packages/cli/API.md",
|
|
92
|
+
"wasm/packages/cli/CHANGELOG.md",
|
|
93
|
+
"pnpm-lock.yaml"
|
|
94
|
+
],
|
|
95
|
+
"gitTagging": "separate-human-action-after-release-seal"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"publication": {
|
|
99
|
+
"registry": "https://registry.npmjs.org",
|
|
100
|
+
"distTag": "beta",
|
|
101
|
+
"access": "public",
|
|
102
|
+
"authentication": "npm-trusted-publishing-oidc",
|
|
103
|
+
"provenance": "automatic",
|
|
104
|
+
"workflowFile": "npm-publish.yml",
|
|
105
|
+
"environment": "npm-publish",
|
|
106
|
+
"candidateArtifact": "pulse-npm-release-candidate",
|
|
107
|
+
"nodeEngines": "^22.14.0 || ^24.0.0",
|
|
108
|
+
"nodeMinimumVersion": "22.14.0",
|
|
109
|
+
"nodeReleaseRange": "^24.0.0",
|
|
110
|
+
"nodeVersion": "24.18.0",
|
|
111
|
+
"npmVersion": "11.15.0",
|
|
112
|
+
"pnpmDevelopmentRange": ">=10 <11",
|
|
113
|
+
"pnpmVersion": "10.0.0",
|
|
114
|
+
"requireExistingPackageNames": true,
|
|
115
|
+
"canonicalSmokePackage": "@pulse-compute/cli",
|
|
116
|
+
"canonicalSmokeBinary": "pulse"
|
|
117
|
+
},
|
|
118
|
+
"runtimeTargets": [
|
|
119
|
+
{
|
|
120
|
+
"id": "node",
|
|
121
|
+
"label": "Node",
|
|
122
|
+
"mode": "execute",
|
|
123
|
+
"summary": "Explicit Native and generally available JavaScript execution over one canonical application contract."
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "fastly",
|
|
127
|
+
"label": "Fastly Compute",
|
|
128
|
+
"mode": "execute-and-build",
|
|
129
|
+
"summary": "Explicit Native direct-host-ABI Wasm and generally available JavaScript source/deployment candidates."
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "none",
|
|
133
|
+
"label": "Compile only",
|
|
134
|
+
"mode": "compile",
|
|
135
|
+
"summary": "Compilation and inspection without a runnable provider target."
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"supportTiers": {
|
|
139
|
+
"canonical-application": {
|
|
140
|
+
"label": "Canonical application surface",
|
|
141
|
+
"promise": "Fully documented and supported as the Pulse application authoring or workflow contract."
|
|
142
|
+
},
|
|
143
|
+
"supported-extension": {
|
|
144
|
+
"label": "Supported provider/extension surface",
|
|
145
|
+
"promise": "Documented entry points are supported; implementation and toolchain subpaths are explicitly excluded."
|
|
146
|
+
},
|
|
147
|
+
"implementation": {
|
|
148
|
+
"label": "Implementation/transitive surface",
|
|
149
|
+
"promise": "Installable as part of the synchronized release set, without an application-author compatibility guarantee."
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"packages": [
|
|
153
|
+
{
|
|
154
|
+
"dir": "packages/runtime",
|
|
155
|
+
"name": "@pulse-compute/runtime",
|
|
156
|
+
"version": "1.0.0-beta.2",
|
|
157
|
+
"documentation": "docs/packages/runtime.md",
|
|
158
|
+
"role": "public-runtime",
|
|
159
|
+
"tier": "canonical-application",
|
|
160
|
+
"audience": "Pulse application authors and library authors who type portable handlers and static routers.",
|
|
161
|
+
"directInstall": "Yes. Install it in every Pulse application.",
|
|
162
|
+
"entryPoints": [
|
|
163
|
+
"@pulse-compute/runtime"
|
|
164
|
+
],
|
|
165
|
+
"stability": "Supported application authoring and execution contract."
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"dir": "packages/pulse",
|
|
169
|
+
"name": "@pulse-compute/pulse",
|
|
170
|
+
"version": "1.0.0-beta.2",
|
|
171
|
+
"documentation": "docs/packages/pulse.md",
|
|
172
|
+
"role": "public-api",
|
|
173
|
+
"tier": "canonical-application",
|
|
174
|
+
"audience": "Pulse application authors using the conventional project root, configuration factory, and schema declarations.",
|
|
175
|
+
"directInstall": "Yes. Install it in every conventional Pulse project.",
|
|
176
|
+
"entryPoints": [
|
|
177
|
+
"@pulse-compute/pulse",
|
|
178
|
+
"@pulse-compute/pulse/schema"
|
|
179
|
+
],
|
|
180
|
+
"stability": "Supported conventional application, project-configuration, and schema-authoring contract."
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"dir": "wasm/packages/cli",
|
|
184
|
+
"name": "@pulse-compute/cli",
|
|
185
|
+
"version": "1.0.0-beta.2",
|
|
186
|
+
"documentation": "docs/packages/cli.md",
|
|
187
|
+
"role": "public-cli",
|
|
188
|
+
"tier": "canonical-application",
|
|
189
|
+
"audience": "Pulse application authors, CI workflows, and tooling integrations.",
|
|
190
|
+
"directInstall": "Yes. Install the package globally or as a project development dependency.",
|
|
191
|
+
"entryPoints": [
|
|
192
|
+
"pulse binary",
|
|
193
|
+
"@pulse-compute/cli",
|
|
194
|
+
"@pulse-compute/cli/workflow",
|
|
195
|
+
"@pulse-compute/cli/project-config",
|
|
196
|
+
"@pulse-compute/cli/project-execution",
|
|
197
|
+
"@pulse-compute/cli/project-config-schema",
|
|
198
|
+
"@pulse-compute/cli/diagnostics",
|
|
199
|
+
"@pulse-compute/cli/project-config.schema.json",
|
|
200
|
+
"@pulse-compute/cli/cli-spec.json",
|
|
201
|
+
"@pulse-compute/cli/release-manifest.json",
|
|
202
|
+
"@pulse-compute/cli/documentation-versions.json",
|
|
203
|
+
"@pulse-compute/cli/documentation-site.json"
|
|
204
|
+
],
|
|
205
|
+
"stability": "Supported Beta workflow and project-configuration contract."
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"dir": "packages/provider-fastly",
|
|
209
|
+
"name": "@pulse-compute/provider-fastly",
|
|
210
|
+
"version": "1.0.0-beta.2",
|
|
211
|
+
"documentation": "docs/packages/provider-fastly.md",
|
|
212
|
+
"role": "public-provider",
|
|
213
|
+
"tier": "supported-extension",
|
|
214
|
+
"audience": "Applications targeting Fastly Compute and Pulse provider maintainers.",
|
|
215
|
+
"directInstall": "Yes, for Fastly projects. Node-only projects do not need to import it directly.",
|
|
216
|
+
"entryPoints": [
|
|
217
|
+
"@pulse-compute/provider-fastly",
|
|
218
|
+
"@pulse-compute/provider-fastly/contract",
|
|
219
|
+
"@pulse-compute/provider-fastly/toolchain",
|
|
220
|
+
"@pulse-compute/provider-fastly/config-schema",
|
|
221
|
+
"@pulse-compute/provider-fastly/runtime/canonical-api-runtime",
|
|
222
|
+
"@pulse-compute/provider-fastly/build/canonical-target",
|
|
223
|
+
"@pulse-compute/provider-fastly/testing/fastly-cli"
|
|
224
|
+
],
|
|
225
|
+
"stability": "The listed entry points are supported for the Beta; all other exported subpaths are implementation-only."
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"dir": "packages/grip",
|
|
229
|
+
"name": "@pulse-compute/grip",
|
|
230
|
+
"version": "1.0.0-beta.2",
|
|
231
|
+
"documentation": "docs/packages/grip.md",
|
|
232
|
+
"role": "public-extension",
|
|
233
|
+
"tier": "supported-extension",
|
|
234
|
+
"audience": "Applications using stateless GRIP/Fanout HTTP framing and request-bound broadcast behavior.",
|
|
235
|
+
"directInstall": "Yes, only when the application uses GRIP/Fanout behavior.",
|
|
236
|
+
"entryPoints": [
|
|
237
|
+
"@pulse-compute/grip"
|
|
238
|
+
],
|
|
239
|
+
"stability": "The package root has bounded JavaScript and Native HTTP-framing realization plus configured Node/Fastly broadcast; /pulsewasm remains compatibility-only."
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"dir": "packages/assets",
|
|
243
|
+
"name": "@pulse-compute/assets",
|
|
244
|
+
"version": "1.0.0-beta.2",
|
|
245
|
+
"documentation": "docs/packages/assets.md",
|
|
246
|
+
"role": "public-extension",
|
|
247
|
+
"tier": "supported-extension",
|
|
248
|
+
"audience": "Applications using JavaScript asset middleware or the package-owned lowerable asset lookup capability.",
|
|
249
|
+
"directInstall": "Yes, only when the application uses the assets capability.",
|
|
250
|
+
"entryPoints": [
|
|
251
|
+
"@pulse-compute/assets"
|
|
252
|
+
],
|
|
253
|
+
"stability": "The package root is the supported JavaScript API and canonical Native authoring surface; /pulsewasm remains a compatibility subpath, while manifest/compiler subpaths are toolchain integration."
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"dir": "packages/crypto",
|
|
257
|
+
"name": "@pulse-compute/crypto",
|
|
258
|
+
"version": "1.0.0-beta.2",
|
|
259
|
+
"documentation": "docs/packages/crypto.md",
|
|
260
|
+
"role": "public-extension",
|
|
261
|
+
"tier": "supported-extension",
|
|
262
|
+
"audience": "Applications and first-party packages using provider-neutral cryptographic verification.",
|
|
263
|
+
"directInstall": "Yes, when an application uses the crypto verification surface directly; JWT applications receive it transitively.",
|
|
264
|
+
"entryPoints": [
|
|
265
|
+
"@pulse-compute/crypto"
|
|
266
|
+
],
|
|
267
|
+
"stability": "The package root is the supported bounded verification contract; realization and Native integration subpaths remain toolchain-only."
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
"dir": "packages/jwt",
|
|
271
|
+
"name": "@pulse-compute/jwt",
|
|
272
|
+
"version": "1.0.0-beta.2",
|
|
273
|
+
"documentation": "docs/packages/jwt.md",
|
|
274
|
+
"role": "public-extension",
|
|
275
|
+
"tier": "supported-extension",
|
|
276
|
+
"audience": "Applications verifying bounded JWT bearer credentials through Pulse providers.",
|
|
277
|
+
"directInstall": "Yes, when an application verifies JWTs.",
|
|
278
|
+
"entryPoints": [
|
|
279
|
+
"@pulse-compute/jwt"
|
|
280
|
+
],
|
|
281
|
+
"stability": "The package root is the supported provider-neutral verification contract; provider and compiler integration subpaths are not application APIs."
|
|
282
|
+
},
|
|
283
|
+
{
|
|
284
|
+
"dir": "packages/entities",
|
|
285
|
+
"name": "@pulse-compute/entities",
|
|
286
|
+
"version": "1.0.0-beta.2",
|
|
287
|
+
"documentation": "docs/packages/entities.md",
|
|
288
|
+
"role": "public-extension",
|
|
289
|
+
"tier": "supported-extension",
|
|
290
|
+
"audience": "Applications declaring bounded schema-backed entity operations through the first-party JSON-RPC adapter.",
|
|
291
|
+
"directInstall": "Yes, when an application declares entity operations.",
|
|
292
|
+
"entryPoints": [
|
|
293
|
+
"@pulse-compute/entities"
|
|
294
|
+
],
|
|
295
|
+
"stability": "The package root and first-party JSON-RPC adapter are supported Beta contracts; compiler integration subpaths remain toolchain-only."
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"dir": "packages/s3",
|
|
299
|
+
"name": "@pulse-compute/s3",
|
|
300
|
+
"version": "1.0.0-beta.2",
|
|
301
|
+
"documentation": "docs/packages/s3.md",
|
|
302
|
+
"role": "public-extension",
|
|
303
|
+
"tier": "supported-extension",
|
|
304
|
+
"audience": "Applications using bounded exact-key object reads and writes through Pulse effects.",
|
|
305
|
+
"directInstall": "Yes, when an application uses S3 object operations.",
|
|
306
|
+
"entryPoints": [
|
|
307
|
+
"@pulse-compute/s3"
|
|
308
|
+
],
|
|
309
|
+
"stability": "The package root supports head, getText and putText on Node Native, Node JavaScript and Fastly Native. Fastly JavaScript is ineligible. Provider and lowering subpaths are toolchain-only; live origin acceptance is separate."
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"dir": "wasm/packages/build-support",
|
|
313
|
+
"name": "@pulse-compute/wasm-build-support",
|
|
314
|
+
"version": "1.0.0-beta.2",
|
|
315
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
316
|
+
"role": "implementation",
|
|
317
|
+
"tier": "implementation",
|
|
318
|
+
"audience": "Pulse release-set and compiler maintainers.",
|
|
319
|
+
"directInstall": "No for application projects; it is installed transitively where required.",
|
|
320
|
+
"entryPoints": [
|
|
321
|
+
"None for application authors."
|
|
322
|
+
],
|
|
323
|
+
"stability": "Internal release-set interface; exported modules may change with compiler implementation needs."
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"dir": "wasm/packages/compiler",
|
|
327
|
+
"name": "@pulse-compute/wasm-compiler",
|
|
328
|
+
"version": "1.0.0-beta.2",
|
|
329
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
330
|
+
"role": "implementation",
|
|
331
|
+
"tier": "implementation",
|
|
332
|
+
"audience": "Pulse compiler and release maintainers.",
|
|
333
|
+
"directInstall": "No for application projects; use the pulse CLI.",
|
|
334
|
+
"entryPoints": [
|
|
335
|
+
"None for application authors."
|
|
336
|
+
],
|
|
337
|
+
"stability": "Internal compiler interface; no application-author compatibility guarantee.",
|
|
338
|
+
"replacement": "@pulse-compute/cli"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"dir": "wasm/packages/wasm-guest-link",
|
|
342
|
+
"name": "@pulse-compute/wasm-guest-link",
|
|
343
|
+
"version": "1.0.0-beta.2",
|
|
344
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
345
|
+
"role": "implementation",
|
|
346
|
+
"tier": "implementation",
|
|
347
|
+
"audience": "Pulse compiler, release, and first-party guest-unit maintainers.",
|
|
348
|
+
"directInstall": "No for application projects; it is an internal synchronized compiler dependency.",
|
|
349
|
+
"entryPoints": [
|
|
350
|
+
"None for application authors."
|
|
351
|
+
],
|
|
352
|
+
"stability": "Internal first-party prebuilt guest-link interface synchronized with the compiler; no application-author or third-party guest compatibility guarantee."
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"dir": "wasm/packages/contracts",
|
|
356
|
+
"name": "@pulse-compute/wasm-contracts",
|
|
357
|
+
"version": "1.0.0-beta.2",
|
|
358
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
359
|
+
"role": "implementation",
|
|
360
|
+
"tier": "implementation",
|
|
361
|
+
"audience": "Pulse compiler, runtime, provider, and package-lowering maintainers.",
|
|
362
|
+
"directInstall": "Provider toolchain authors may install it for the versioned bootstrap contract; application projects receive it transitively.",
|
|
363
|
+
"entryPoints": [
|
|
364
|
+
"@pulse-compute/wasm-contracts/provider/toolchain"
|
|
365
|
+
],
|
|
366
|
+
"stability": "The provider toolchain contract is versioned and supported for the Beta; other protocol and proof interfaces remain internal."
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"dir": "wasm/packages/host-runtime",
|
|
370
|
+
"name": "@pulse-compute/wasm-host-runtime",
|
|
371
|
+
"version": "1.0.0-beta.2",
|
|
372
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
373
|
+
"role": "implementation",
|
|
374
|
+
"tier": "implementation",
|
|
375
|
+
"audience": "Pulse host-runtime and provider maintainers.",
|
|
376
|
+
"directInstall": "No for application projects; it is installed transitively.",
|
|
377
|
+
"entryPoints": [
|
|
378
|
+
"None for application authors."
|
|
379
|
+
],
|
|
380
|
+
"stability": "Internal compiler/runtime interface synchronized with this release set."
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"dir": "wasm/packages/library-kit",
|
|
384
|
+
"name": "@pulse-compute/wasm-library-kit",
|
|
385
|
+
"version": "1.0.0-beta.2",
|
|
386
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
387
|
+
"role": "implementation",
|
|
388
|
+
"tier": "implementation",
|
|
389
|
+
"audience": "Pulse package-lowering and compiler maintainers.",
|
|
390
|
+
"directInstall": "No for application projects; it is installed transitively.",
|
|
391
|
+
"entryPoints": [
|
|
392
|
+
"None for application authors."
|
|
393
|
+
],
|
|
394
|
+
"stability": "Internal package-lowering interface synchronized with this release set."
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"dir": "packages/provider-node",
|
|
398
|
+
"name": "@pulse-compute/provider-node",
|
|
399
|
+
"version": "1.0.0-beta.2",
|
|
400
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
401
|
+
"role": "implementation",
|
|
402
|
+
"tier": "implementation",
|
|
403
|
+
"audience": "Pulse canonical Node provider and compiler maintainers.",
|
|
404
|
+
"directInstall": "No for application projects; select provider: node through the CLI.",
|
|
405
|
+
"entryPoints": [
|
|
406
|
+
"@pulse-compute/provider-node/toolchain"
|
|
407
|
+
],
|
|
408
|
+
"stability": "The listed built-in toolchain entry is synchronized with the Beta bootstrap contract; other canonical Node provider interfaces remain internal.",
|
|
409
|
+
"replacement": "provider: 'node' through @pulse-compute/cli"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"dir": "wasm/packages/runtime-core-as",
|
|
413
|
+
"name": "@pulse-compute/wasm-runtime-core-as",
|
|
414
|
+
"version": "1.0.0-beta.2",
|
|
415
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
416
|
+
"role": "implementation",
|
|
417
|
+
"tier": "implementation",
|
|
418
|
+
"audience": "Pulse AssemblyScript runtime-core and compiler maintainers.",
|
|
419
|
+
"directInstall": "No for application projects; it is installed transitively.",
|
|
420
|
+
"entryPoints": [
|
|
421
|
+
"None for application authors."
|
|
422
|
+
],
|
|
423
|
+
"stability": "Internal code-generation interface synchronized with this release set."
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"dir": "wasm/packages/schema-json",
|
|
427
|
+
"name": "@pulse-compute/wasm-schema-json",
|
|
428
|
+
"version": "1.0.0-beta.2",
|
|
429
|
+
"documentation": "docs/packages/implementation-packages.md",
|
|
430
|
+
"role": "implementation",
|
|
431
|
+
"tier": "implementation",
|
|
432
|
+
"audience": "Pulse schema compiler and runtime maintainers.",
|
|
433
|
+
"directInstall": "No for application projects; declare schemas in the selected .pulse/config.ts profile.",
|
|
434
|
+
"entryPoints": [
|
|
435
|
+
"None for application authors."
|
|
436
|
+
],
|
|
437
|
+
"stability": "Internal schema compiler interface synchronized with this release set.",
|
|
438
|
+
"replacement": "schemas in .pulse/config.ts through the Pulse project workflow"
|
|
439
|
+
}
|
|
440
|
+
]
|
|
441
|
+
}
|