@tsdoctor/bundle 0.1.0

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/index.js ADDED
@@ -0,0 +1,9 @@
1
+ import { BundleManifest, BundleManifestError, KNOWN_REGISTRY_TYPES, OpenGraphConfig, OpenGraphImage, ProjectIdentity, RegistryRef, SbomRef, decodeBundleManifest, isKnownRegistryType } from "./BundleManifest.js";
2
+ import { BundleLayerError, TSDOCTOR_MANIFEST_FILENAME, readApiModelInfo, readBundle } from "./Bundle.js";
3
+ import { BundleDiscoveryError, discoverBundle, discoverBundles, loadBundle, loadBundles } from "./BundleDiscovery.js";
4
+ import { BundleFetchError, fetchGitHubReleaseBundle, fetchNpmBundle } from "./BundleFetch.js";
5
+ import { canonicalJson, fingerprintResolvedBundle, hashJsonValue, hashLayerText, hashText, normalizeText, sha256Hex } from "./BundleHash.js";
6
+ import { resolveBundle, resolveBundleFrom } from "./BundleResolver.js";
7
+ import { PlatformOverrides, decodePlatformOverrides } from "./PlatformOverrides.js";
8
+
9
+ export { BundleDiscoveryError, BundleFetchError, BundleLayerError, BundleManifest, BundleManifestError, KNOWN_REGISTRY_TYPES, OpenGraphConfig, OpenGraphImage, PlatformOverrides, ProjectIdentity, RegistryRef, SbomRef, TSDOCTOR_MANIFEST_FILENAME, canonicalJson, decodeBundleManifest, decodePlatformOverrides, discoverBundle, discoverBundles, fetchGitHubReleaseBundle, fetchNpmBundle, fingerprintResolvedBundle, hashJsonValue, hashLayerText, hashText, isKnownRegistryType, loadBundle, loadBundles, normalizeText, readApiModelInfo, readBundle, resolveBundle, resolveBundleFrom, sha256Hex };
package/package.json ADDED
@@ -0,0 +1,55 @@
1
+ {
2
+ "name": "@tsdoctor/bundle",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "The tsdoctor bundle spec: layered bundle discovery, the versioned tsdoctor.json sidecar manifest, provenance-carrying resolution and canonical input hashing for API documentation bundles.",
6
+ "keywords": [
7
+ "api-extractor",
8
+ "bundle",
9
+ "manifest",
10
+ "documentation",
11
+ "provenance",
12
+ "typescript",
13
+ "effect",
14
+ "esm"
15
+ ],
16
+ "homepage": "https://github.com/spencerbeggs/tsdoctor#readme",
17
+ "bugs": {
18
+ "url": "https://github.com/spencerbeggs/tsdoctor/issues"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/spencerbeggs/tsdoctor.git",
23
+ "directory": "packages/bundle"
24
+ },
25
+ "license": "MIT",
26
+ "author": {
27
+ "name": "C. Spencer Beggs",
28
+ "email": "spencer@beggs.codes",
29
+ "url": "https://spencerbeg.gs"
30
+ },
31
+ "sideEffects": false,
32
+ "type": "module",
33
+ "exports": {
34
+ ".": {
35
+ "types": "./index.d.ts",
36
+ "import": "./index.js",
37
+ "default": "./index.js"
38
+ },
39
+ "./package.json": "./package.json"
40
+ },
41
+ "peerDependencies": {
42
+ "@effected/github": "^0.8.0",
43
+ "@effected/glob": "^0.4.0",
44
+ "@effected/npm": "^0.12.0",
45
+ "@effected/package-json": "^0.11.0",
46
+ "@effected/store": "^0.4.0",
47
+ "@effected/tsconfig-json": "^0.6.0",
48
+ "@effected/walker": "^0.5.0",
49
+ "@effected/xdg": "^0.3.0",
50
+ "effect": "4.0.0-rc.109"
51
+ },
52
+ "engines": {
53
+ "node": ">=24.11.0"
54
+ }
55
+ }
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.59.0"
9
+ }
10
+ ]
11
+ }