@gmickel/gno 1.45.1 → 2.0.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/README.md +1 -1
- package/THIRD_PARTY_NOTICES.md +46 -0
- package/assets/skill/SKILL.md +7 -6
- package/assets/skill/cli-reference.md +14 -6
- package/assets/skill/mcp-reference.md +4 -1
- package/assets/spa-production.json.gz +0 -0
- package/browser-extension/artifacts/gno-browser-clipper-v2.0.0.zip +0 -0
- package/browser-extension/artifacts/gno-browser-clipper-v2.0.0.zip.sha256 +1 -0
- package/browser-extension/dist/chunk-4tc9v0ja.js +74 -0
- package/browser-extension/dist/manifest.json +1 -1
- package/browser-extension/dist/preview.html +1 -1
- package/browser-extension/dist/service-worker.js +32 -33
- package/bunfig.toml +2 -0
- package/package.json +40 -26
- package/spec/cli.md +30 -11
- package/spec/db/schema.sql +146 -1
- package/spec/mcp.md +26 -0
- package/src/app/context-runtime-types.ts +3 -0
- package/src/app/context-runtime.ts +2 -0
- package/src/cli/commands/ask.ts +6 -1
- package/src/cli/commands/daemon.ts +21 -8
- package/src/cli/commands/embed.ts +77 -41
- package/src/cli/commands/mcp/install.ts +20 -0
- package/src/cli/commands/mcp/paths.ts +25 -0
- package/src/cli/commands/mcp/status.ts +6 -0
- package/src/cli/detach.ts +3 -2
- package/src/cli/program.ts +6 -0
- package/src/config/types.ts +3 -3
- package/src/converters/adapters/markitdownTs/adapter.ts +1 -2
- package/src/converters/adapters/officeparser/adapter.ts +1 -2
- package/src/converters/versions.ts +6 -8
- package/src/core/context-evidence.ts +8 -4
- package/src/core/job-manager.ts +95 -13
- package/src/core/network-boundary-inventory.ts +10 -0
- package/src/core/shutdown-budget.ts +45 -0
- package/src/embed/backlog.ts +107 -4
- package/src/embed/batch.ts +42 -2
- package/src/embed/fingerprint.ts +16 -0
- package/src/embed/retry.ts +113 -5
- package/src/embed/variant-backlog.ts +105 -0
- package/src/embed/variant-plan.ts +62 -0
- package/src/embed/variant-retry.ts +113 -0
- package/src/ingestion/graph-reconciliation.ts +327 -0
- package/src/ingestion/sync.ts +9 -272
- package/src/llm/http-inference.ts +6 -0
- package/src/llm/httpEmbedding.ts +37 -6
- package/src/llm/httpGeneration.ts +18 -3
- package/src/llm/httpRerank.ts +23 -5
- package/src/llm/inference-cancellation.ts +168 -0
- package/src/llm/inference-scope.ts +202 -0
- package/src/llm/lazy-ports.ts +115 -0
- package/src/llm/native-worker/client.ts +541 -0
- package/src/llm/native-worker/dispatcher.ts +228 -0
- package/src/llm/native-worker/embedding-identity.ts +33 -0
- package/src/llm/native-worker/entry.ts +173 -0
- package/src/llm/native-worker/errors.ts +32 -0
- package/src/llm/native-worker/evaluation.ts +16 -0
- package/src/llm/native-worker/owned-exit.ts +108 -0
- package/src/llm/native-worker/owner.ts +141 -0
- package/src/llm/native-worker/ports.ts +317 -0
- package/src/llm/native-worker/protocol.ts +442 -0
- package/src/llm/native-worker/runtime-config.ts +92 -0
- package/src/llm/nodeLlamaCpp/adapter.ts +77 -20
- package/src/llm/nodeLlamaCpp/embedding.ts +130 -46
- package/src/llm/nodeLlamaCpp/generation.ts +34 -5
- package/src/llm/nodeLlamaCpp/lifecycle-options.ts +99 -0
- package/src/llm/nodeLlamaCpp/lifecycle.ts +209 -204
- package/src/llm/nodeLlamaCpp/rerank-capacity.ts +111 -0
- package/src/llm/nodeLlamaCpp/rerank.ts +118 -27
- package/src/llm/nodeLlamaCpp/simulator-handle.ts +73 -0
- package/src/llm/nodeLlamaCpp/simulator-install.ts +124 -0
- package/src/llm/nodeLlamaCpp/simulator-session.ts +240 -0
- package/src/llm/nodeLlamaCpp/simulator-types.ts +80 -0
- package/src/llm/types.ts +35 -5
- package/src/mcp/context.ts +27 -0
- package/src/mcp/http-transport.ts +12 -10
- package/src/mcp/server.ts +3 -0
- package/src/mcp/tool-profile.ts +30 -8
- package/src/mcp/tools/context.ts +8 -11
- package/src/mcp/tools/embed.ts +1 -1
- package/src/mcp/tools/index-cmd.ts +1 -1
- package/src/mcp/tools/index.ts +10 -8
- package/src/mcp/tools/query.ts +14 -30
- package/src/mcp/tools/vsearch.ts +1 -1
- package/src/pipeline/answer.ts +23 -3
- package/src/pipeline/claim-verifier.ts +6 -0
- package/src/pipeline/expansion.ts +43 -40
- package/src/pipeline/explain.ts +6 -2
- package/src/pipeline/filters.ts +63 -0
- package/src/pipeline/fusion.ts +29 -9
- package/src/pipeline/graph-retrieval.ts +29 -9
- package/src/pipeline/hybrid.ts +198 -55
- package/src/pipeline/hydration.ts +161 -0
- package/src/pipeline/owner-fusion.ts +87 -0
- package/src/pipeline/rerank.ts +35 -11
- package/src/pipeline/search.ts +13 -2
- package/src/pipeline/types.ts +5 -3
- package/src/pipeline/vsearch.ts +87 -7
- package/src/sdk/client.ts +47 -3
- package/src/sdk/embed.ts +63 -39
- package/src/serve/background-runtime.ts +1 -1
- package/src/serve/context.ts +41 -56
- package/src/serve/embed-scheduler.ts +58 -35
- package/src/serve/public/components/IndexingProgress.tsx +46 -60
- package/src/serve/public/globals.built.css +1 -1
- package/src/serve/public/lib/shiki-language-ids.ts +14 -0
- package/src/serve/resident-admission.ts +36 -36
- package/src/serve/resident-background-work.ts +20 -2
- package/src/serve/resident-request.ts +11 -5
- package/src/serve/resident-runtime.ts +97 -61
- package/src/serve/resident-shutdown.ts +153 -0
- package/src/serve/routes/api.ts +3 -1
- package/src/serve/server.ts +47 -26
- package/src/store/migrations/028-vector-variants.ts +54 -0
- package/src/store/migrations/029-graph-reference-state.ts +77 -0
- package/src/store/migrations/index.ts +4 -0
- package/src/store/sqlite/adapter.ts +251 -183
- package/src/store/sqlite/eligibility.ts +174 -0
- package/src/store/sqlite/graph-edge-application.ts +66 -0
- package/src/store/sqlite/graph-reference-state.ts +194 -0
- package/src/store/sqlite/legacy-vector-ownership.ts +79 -0
- package/src/store/types.ts +80 -12
- package/src/store/vector/eligibility.ts +36 -0
- package/src/store/vector/freshness.ts +33 -6
- package/src/store/vector/lazy.ts +81 -0
- package/src/store/vector/sqlite-vec.ts +106 -54
- package/src/store/vector/stats.ts +14 -3
- package/src/store/vector/types.ts +35 -2
- package/src/store/vector/variant-search.ts +192 -0
- package/src/store/vector/variants.ts +451 -0
- package/vendor/converters/markitdown-ts/LICENSE +21 -0
- package/vendor/converters/markitdown-ts/dist/index.cjs +1180 -0
- package/vendor/converters/markitdown-ts/dist/index.d.cts +46 -0
- package/vendor/converters/markitdown-ts/dist/index.d.mts +46 -0
- package/vendor/converters/markitdown-ts/dist/index.d.ts +46 -0
- package/vendor/converters/markitdown-ts/dist/index.mjs +1152 -0
- package/vendor/converters/markitdown-ts/package.json +77 -0
- package/vendor/converters/officeparser/LICENSE +21 -0
- package/vendor/converters/officeparser/dist/OfficeConverter.d.ts +47 -0
- package/vendor/converters/officeparser/dist/OfficeConverter.js +76 -0
- package/vendor/converters/officeparser/dist/OfficeGenerator.d.ts +23 -0
- package/vendor/converters/officeparser/dist/OfficeGenerator.js +73 -0
- package/vendor/converters/officeparser/dist/OfficeParser.d.ts +106 -0
- package/vendor/converters/officeparser/dist/OfficeParser.js +332 -0
- package/vendor/converters/officeparser/dist/cli.d.ts +28 -0
- package/vendor/converters/officeparser/dist/cli.js +381 -0
- package/vendor/converters/officeparser/dist/defaults.d.ts +41 -0
- package/vendor/converters/officeparser/dist/defaults.js +218 -0
- package/vendor/converters/officeparser/dist/generators/BaseGenerator.d.ts +107 -0
- package/vendor/converters/officeparser/dist/generators/BaseGenerator.js +248 -0
- package/vendor/converters/officeparser/dist/generators/ChunkingGenerator.d.ts +82 -0
- package/vendor/converters/officeparser/dist/generators/ChunkingGenerator.js +797 -0
- package/vendor/converters/officeparser/dist/generators/CsvGenerator.d.ts +38 -0
- package/vendor/converters/officeparser/dist/generators/CsvGenerator.js +245 -0
- package/vendor/converters/officeparser/dist/generators/EpubGenerator.d.ts +43 -0
- package/vendor/converters/officeparser/dist/generators/EpubGenerator.js +315 -0
- package/vendor/converters/officeparser/dist/generators/HtmlGenerator.d.ts +59 -0
- package/vendor/converters/officeparser/dist/generators/HtmlGenerator.js +1942 -0
- package/vendor/converters/officeparser/dist/generators/MarkdownGenerator.d.ts +96 -0
- package/vendor/converters/officeparser/dist/generators/MarkdownGenerator.js +1175 -0
- package/vendor/converters/officeparser/dist/generators/PdfGenerator.d.ts +22 -0
- package/vendor/converters/officeparser/dist/generators/PdfGenerator.js +194 -0
- package/vendor/converters/officeparser/dist/generators/RtfGenerator.d.ts +29 -0
- package/vendor/converters/officeparser/dist/generators/RtfGenerator.js +316 -0
- package/vendor/converters/officeparser/dist/generators/TextGenerator.d.ts +13 -0
- package/vendor/converters/officeparser/dist/generators/TextGenerator.js +201 -0
- package/vendor/converters/officeparser/dist/index.d.ts +60 -0
- package/vendor/converters/officeparser/dist/index.js +72 -0
- package/vendor/converters/officeparser/dist/index.mjs +18 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.d.ts +2621 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.iife.js +1336 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.mjs +1335 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.slim.d.ts +2621 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.slim.iife.js +1336 -0
- package/vendor/converters/officeparser/dist/officeparser.browser.slim.mjs +1335 -0
- package/vendor/converters/officeparser/dist/parsers/CsvParser.d.ts +9 -0
- package/vendor/converters/officeparser/dist/parsers/CsvParser.js +115 -0
- package/vendor/converters/officeparser/dist/parsers/EpubParser.d.ts +8 -0
- package/vendor/converters/officeparser/dist/parsers/EpubParser.js +217 -0
- package/vendor/converters/officeparser/dist/parsers/ExcelParser.d.ts +32 -0
- package/vendor/converters/officeparser/dist/parsers/ExcelParser.js +736 -0
- package/vendor/converters/officeparser/dist/parsers/HtmlParser.d.ts +2 -0
- package/vendor/converters/officeparser/dist/parsers/HtmlParser.js +1287 -0
- package/vendor/converters/officeparser/dist/parsers/MarkdownParser.d.ts +2 -0
- package/vendor/converters/officeparser/dist/parsers/MarkdownParser.js +1272 -0
- package/vendor/converters/officeparser/dist/parsers/OpenOfficeParser.d.ts +31 -0
- package/vendor/converters/officeparser/dist/parsers/OpenOfficeParser.js +1819 -0
- package/vendor/converters/officeparser/dist/parsers/PdfParser.d.ts +67 -0
- package/vendor/converters/officeparser/dist/parsers/PdfParser.js +848 -0
- package/vendor/converters/officeparser/dist/parsers/PowerPointParser.d.ts +32 -0
- package/vendor/converters/officeparser/dist/parsers/PowerPointParser.js +950 -0
- package/vendor/converters/officeparser/dist/parsers/RtfParser.d.ts +187 -0
- package/vendor/converters/officeparser/dist/parsers/RtfParser.js +1801 -0
- package/vendor/converters/officeparser/dist/parsers/WordParser.d.ts +79 -0
- package/vendor/converters/officeparser/dist/parsers/WordParser.js +1177 -0
- package/vendor/converters/officeparser/dist/sbom.cdx.json +1763 -0
- package/vendor/converters/officeparser/dist/types.d.ts +2507 -0
- package/vendor/converters/officeparser/dist/types.js +107 -0
- package/vendor/converters/officeparser/dist/utils/astUtils.d.ts +16 -0
- package/vendor/converters/officeparser/dist/utils/astUtils.js +33 -0
- package/vendor/converters/officeparser/dist/utils/chartUtils.d.ts +6 -0
- package/vendor/converters/officeparser/dist/utils/chartUtils.js +257 -0
- package/vendor/converters/officeparser/dist/utils/configUtils.d.ts +44 -0
- package/vendor/converters/officeparser/dist/utils/configUtils.js +315 -0
- package/vendor/converters/officeparser/dist/utils/dateUtils.d.ts +17 -0
- package/vendor/converters/officeparser/dist/utils/dateUtils.js +69 -0
- package/vendor/converters/officeparser/dist/utils/envUtils.d.ts +29 -0
- package/vendor/converters/officeparser/dist/utils/envUtils.js +152 -0
- package/vendor/converters/officeparser/dist/utils/errorUtils.d.ts +72 -0
- package/vendor/converters/officeparser/dist/utils/errorUtils.js +245 -0
- package/vendor/converters/officeparser/dist/utils/imageUtils.d.ts +66 -0
- package/vendor/converters/officeparser/dist/utils/imageUtils.js +133 -0
- package/vendor/converters/officeparser/dist/utils/mathUtils.d.ts +42 -0
- package/vendor/converters/officeparser/dist/utils/mathUtils.js +385 -0
- package/vendor/converters/officeparser/dist/utils/moduleLoader.d.ts +18 -0
- package/vendor/converters/officeparser/dist/utils/moduleLoader.js +106 -0
- package/vendor/converters/officeparser/dist/utils/ocrUtils.d.ts +42 -0
- package/vendor/converters/officeparser/dist/utils/ocrUtils.js +428 -0
- package/vendor/converters/officeparser/dist/utils/sanitize.d.ts +148 -0
- package/vendor/converters/officeparser/dist/utils/sanitize.js +344 -0
- package/vendor/converters/officeparser/dist/utils/sheetUtils.d.ts +7 -0
- package/vendor/converters/officeparser/dist/utils/sheetUtils.js +35 -0
- package/vendor/converters/officeparser/dist/utils/styleMapper.d.ts +36 -0
- package/vendor/converters/officeparser/dist/utils/styleMapper.js +224 -0
- package/vendor/converters/officeparser/dist/utils/xmlUtils.d.ts +163 -0
- package/vendor/converters/officeparser/dist/utils/xmlUtils.js +461 -0
- package/vendor/converters/officeparser/dist/utils/zipUtils.d.ts +134 -0
- package/vendor/converters/officeparser/dist/utils/zipUtils.js +337 -0
- package/vendor/converters/officeparser/package.json +147 -0
- package/vendor/converters/upstream-manifest.json +124 -0
- package/vendor/dependency-fixes/README.md +77 -0
- package/vendor/dependency-fixes/vendor-converters.py +83 -0
- package/browser-extension/artifacts/gno-browser-clipper-v1.45.1.zip +0 -0
- package/browser-extension/artifacts/gno-browser-clipper-v1.45.1.zip.sha256 +0 -1
- package/browser-extension/dist/chunk-627emwpj.js +0 -75
- /package/browser-extension/dist/{chunk-ydfx5d7p.css → chunk-z74y8n8c.css} +0 -0
|
@@ -0,0 +1,1763 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
|
|
3
|
+
"bomFormat": "CycloneDX",
|
|
4
|
+
"specVersion": "1.6",
|
|
5
|
+
"version": 1,
|
|
6
|
+
"serialNumber": "urn:uuid:f41b2f13-0241-44b2-bd4b-1ae51d458463",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"timestamp": "2026-08-18T21:56:11.512Z",
|
|
9
|
+
"tools": {
|
|
10
|
+
"components": [
|
|
11
|
+
{
|
|
12
|
+
"type": "application",
|
|
13
|
+
"name": "npm",
|
|
14
|
+
"version": "11.17.0"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"type": "application",
|
|
18
|
+
"name": "cyclonedx-npm",
|
|
19
|
+
"group": "@cyclonedx",
|
|
20
|
+
"version": "6.0.1",
|
|
21
|
+
"author": "Jan Kowalleck",
|
|
22
|
+
"description": "Create CycloneDX Software Bill of Materials (SBOM) from NPM projects.",
|
|
23
|
+
"licenses": [
|
|
24
|
+
{
|
|
25
|
+
"license": {
|
|
26
|
+
"id": "Apache-2.0"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"externalReferences": [
|
|
31
|
+
{
|
|
32
|
+
"url": "git+https://github.com/CycloneDX/cyclonedx-node-npm.git",
|
|
33
|
+
"type": "vcs",
|
|
34
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"url": "https://github.com/CycloneDX/cyclonedx-node-npm#readme",
|
|
38
|
+
"type": "website",
|
|
39
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"url": "https://github.com/CycloneDX/cyclonedx-node-npm/issues",
|
|
43
|
+
"type": "issue-tracker",
|
|
44
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"properties": [
|
|
48
|
+
{
|
|
49
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
50
|
+
"value": ">=20.18.0"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "cdx:npm:package:constraint:engine:npm",
|
|
54
|
+
"value": ">=9"
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"type": "library",
|
|
60
|
+
"name": "cyclonedx-library",
|
|
61
|
+
"group": "@cyclonedx",
|
|
62
|
+
"version": "10.2.0",
|
|
63
|
+
"author": "Jan Kowalleck",
|
|
64
|
+
"description": "Core functionality of CycloneDX for JavaScript (Node.js or WebBrowser).",
|
|
65
|
+
"licenses": [
|
|
66
|
+
{
|
|
67
|
+
"license": {
|
|
68
|
+
"id": "Apache-2.0"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"externalReferences": [
|
|
73
|
+
{
|
|
74
|
+
"url": "git+https://github.com/CycloneDX/cyclonedx-javascript-library.git",
|
|
75
|
+
"type": "vcs",
|
|
76
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"url": "https://github.com/CycloneDX/cyclonedx-javascript-library#readme",
|
|
80
|
+
"type": "website",
|
|
81
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"url": "https://github.com/CycloneDX/cyclonedx-javascript-library/issues",
|
|
85
|
+
"type": "issue-tracker",
|
|
86
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"properties": [
|
|
90
|
+
{
|
|
91
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
92
|
+
"value": ">=20.18.0"
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
"component": {
|
|
99
|
+
"type": "application",
|
|
100
|
+
"name": "officeparser",
|
|
101
|
+
"version": "7.8.0",
|
|
102
|
+
"bom-ref": "officeparser@7.8.0",
|
|
103
|
+
"author": "Harsh Ankur",
|
|
104
|
+
"description": "A robust, strictly-typed Node.js and Browser library for parsing office files (.docx, .pptx, .xlsx, .odt, .odp, .ods, .pdf, .rtf, .csv, .md, .html, .epub) and generating high-fidelity outputs in Markdown, HTML, CSV, RTF, PDF, EPUB, and RAG-focused chunks.",
|
|
105
|
+
"licenses": [
|
|
106
|
+
{
|
|
107
|
+
"license": {
|
|
108
|
+
"id": "MIT",
|
|
109
|
+
"acknowledgement": "declared"
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
],
|
|
113
|
+
"purl": "pkg:npm/officeparser@7.8.0?vcs_url=git%2Bhttps%3A%2F%2Fgithub.com%2Fharshankur%2FofficeParser.git",
|
|
114
|
+
"externalReferences": [
|
|
115
|
+
{
|
|
116
|
+
"url": "git+https://github.com/harshankur/officeParser.git",
|
|
117
|
+
"type": "vcs",
|
|
118
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"url": "https://officeparser.harshankur.com",
|
|
122
|
+
"type": "website",
|
|
123
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"url": "https://github.com/harshankur/officeParser/issues",
|
|
127
|
+
"type": "issue-tracker",
|
|
128
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"properties": [
|
|
132
|
+
{
|
|
133
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
134
|
+
"value": ">=18.0.0"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"name": "cdx:npm:package:path",
|
|
138
|
+
"value": ""
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"components": [
|
|
144
|
+
{
|
|
145
|
+
"type": "library",
|
|
146
|
+
"name": "xmldom",
|
|
147
|
+
"group": "@xmldom",
|
|
148
|
+
"version": "0.9.10",
|
|
149
|
+
"bom-ref": "officeparser@7.8.0|@xmldom/xmldom@0.9.10",
|
|
150
|
+
"description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.",
|
|
151
|
+
"licenses": [
|
|
152
|
+
{
|
|
153
|
+
"license": {
|
|
154
|
+
"id": "MIT",
|
|
155
|
+
"acknowledgement": "declared"
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"purl": "pkg:npm/%40xmldom/xmldom@0.9.10",
|
|
160
|
+
"externalReferences": [
|
|
161
|
+
{
|
|
162
|
+
"url": "git://github.com/xmldom/xmldom.git",
|
|
163
|
+
"type": "vcs",
|
|
164
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"url": "https://github.com/xmldom/xmldom",
|
|
168
|
+
"type": "website",
|
|
169
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"url": "https://github.com/xmldom/xmldom/issues",
|
|
173
|
+
"type": "issue-tracker",
|
|
174
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"url": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.10.tgz",
|
|
178
|
+
"type": "distribution",
|
|
179
|
+
"hashes": [
|
|
180
|
+
{
|
|
181
|
+
"alg": "SHA-512",
|
|
182
|
+
"content": "03d80ea8b762e9c57889b6b3023710b9f1a3d01d72fef0ea62b72e3fa77feb1f0fdbb8114bceb8dc38fda357442ad07a3bb7f0c5bd858019894b6997ee0a6f77"
|
|
183
|
+
}
|
|
184
|
+
],
|
|
185
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"properties": [
|
|
189
|
+
{
|
|
190
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
191
|
+
"value": ">=14.6"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "cdx:npm:package:path",
|
|
195
|
+
"value": "node_modules/@xmldom/xmldom"
|
|
196
|
+
}
|
|
197
|
+
]
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"type": "library",
|
|
201
|
+
"name": "fflate",
|
|
202
|
+
"version": "0.8.3",
|
|
203
|
+
"bom-ref": "officeparser@7.8.0|fflate@0.8.3",
|
|
204
|
+
"author": "Arjun Barrett",
|
|
205
|
+
"description": "High performance (de)compression in an 8kB package",
|
|
206
|
+
"licenses": [
|
|
207
|
+
{
|
|
208
|
+
"license": {
|
|
209
|
+
"id": "MIT",
|
|
210
|
+
"acknowledgement": "declared"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
],
|
|
214
|
+
"purl": "pkg:npm/fflate@0.8.3",
|
|
215
|
+
"externalReferences": [
|
|
216
|
+
{
|
|
217
|
+
"url": "git+https://github.com/101arrowz/fflate.git",
|
|
218
|
+
"type": "vcs",
|
|
219
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"url": "https://101arrowz.github.io/fflate",
|
|
223
|
+
"type": "website",
|
|
224
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"url": "https://github.com/101arrowz/fflate/issues",
|
|
228
|
+
"type": "issue-tracker",
|
|
229
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"url": "https://registry.npmjs.org/fflate/-/fflate-0.8.3.tgz",
|
|
233
|
+
"type": "distribution",
|
|
234
|
+
"hashes": [
|
|
235
|
+
{
|
|
236
|
+
"alg": "SHA-512",
|
|
237
|
+
"content": "b5b64db89acbc06529df3b2106d772e16f8e47166e221f1ae629722044030b9ad8d5fdd4db424caf2d0b977581cd4e7c1192ac12e2455e16f9830bfc0ac3ef80"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
241
|
+
}
|
|
242
|
+
],
|
|
243
|
+
"properties": [
|
|
244
|
+
{
|
|
245
|
+
"name": "cdx:npm:package:path",
|
|
246
|
+
"value": "node_modules/fflate"
|
|
247
|
+
}
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"type": "library",
|
|
252
|
+
"name": "file-type",
|
|
253
|
+
"version": "22.0.1",
|
|
254
|
+
"bom-ref": "officeparser@7.8.0|file-type@22.0.1",
|
|
255
|
+
"author": "Sindre Sorhus",
|
|
256
|
+
"description": "Detect the file type of a file, stream, or data",
|
|
257
|
+
"licenses": [
|
|
258
|
+
{
|
|
259
|
+
"license": {
|
|
260
|
+
"id": "MIT",
|
|
261
|
+
"acknowledgement": "declared"
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
],
|
|
265
|
+
"purl": "pkg:npm/file-type@22.0.1",
|
|
266
|
+
"externalReferences": [
|
|
267
|
+
{
|
|
268
|
+
"url": "git+https://github.com/sindresorhus/file-type.git",
|
|
269
|
+
"type": "vcs",
|
|
270
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"url": "https://github.com/sindresorhus/file-type#readme",
|
|
274
|
+
"type": "website",
|
|
275
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"url": "https://github.com/sindresorhus/file-type/issues",
|
|
279
|
+
"type": "issue-tracker",
|
|
280
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"url": "https://registry.npmjs.org/file-type/-/file-type-22.0.1.tgz",
|
|
284
|
+
"type": "distribution",
|
|
285
|
+
"hashes": [
|
|
286
|
+
{
|
|
287
|
+
"alg": "SHA-512",
|
|
288
|
+
"content": "c30e4c86b7b4104fa3981bce5d399701b10cb9913bb97e1adfea1109014d8fcc3efa0ddebfdd7737ab57433d174d76ee790e535907e6e8175a5621071e7f1b84"
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
"properties": [
|
|
295
|
+
{
|
|
296
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
297
|
+
"value": ">=22"
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"name": "cdx:npm:package:path",
|
|
301
|
+
"value": "node_modules/file-type"
|
|
302
|
+
}
|
|
303
|
+
]
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"type": "library",
|
|
307
|
+
"name": "pdfjs-dist",
|
|
308
|
+
"version": "6.1.200",
|
|
309
|
+
"bom-ref": "officeparser@7.8.0|pdfjs-dist@6.1.200",
|
|
310
|
+
"description": "Generic build of Mozilla's PDF.js library.",
|
|
311
|
+
"licenses": [
|
|
312
|
+
{
|
|
313
|
+
"license": {
|
|
314
|
+
"id": "Apache-2.0",
|
|
315
|
+
"acknowledgement": "declared"
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
],
|
|
319
|
+
"purl": "pkg:npm/pdfjs-dist@6.1.200",
|
|
320
|
+
"externalReferences": [
|
|
321
|
+
{
|
|
322
|
+
"url": "git+https://github.com/mozilla/pdf.js.git",
|
|
323
|
+
"type": "vcs",
|
|
324
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"url": "https://mozilla.github.io/pdf.js/",
|
|
328
|
+
"type": "website",
|
|
329
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"url": "https://github.com/mozilla/pdf.js/issues",
|
|
333
|
+
"type": "issue-tracker",
|
|
334
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"url": "https://registry.npmjs.org/pdfjs-dist/-/pdfjs-dist-6.1.200.tgz",
|
|
338
|
+
"type": "distribution",
|
|
339
|
+
"hashes": [
|
|
340
|
+
{
|
|
341
|
+
"alg": "SHA-512",
|
|
342
|
+
"content": "a3c328972ce2ae490badc76c69efc710e888717588ec34b9cc6a6fa96f314c2d9852c5b7d2b96d170d9b0c6bf0fdfb2451d10cad09b66ebebc8f30d2e411f6bf"
|
|
343
|
+
}
|
|
344
|
+
],
|
|
345
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
346
|
+
}
|
|
347
|
+
],
|
|
348
|
+
"properties": [
|
|
349
|
+
{
|
|
350
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
351
|
+
"value": ">=22.13.0 || >=24"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "cdx:npm:package:path",
|
|
355
|
+
"value": "node_modules/pdfjs-dist"
|
|
356
|
+
}
|
|
357
|
+
]
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "library",
|
|
361
|
+
"name": "tesseract.js",
|
|
362
|
+
"version": "7.0.0",
|
|
363
|
+
"bom-ref": "officeparser@7.8.0|tesseract.js@7.0.0",
|
|
364
|
+
"description": "Pure Javascript Multilingual OCR",
|
|
365
|
+
"licenses": [
|
|
366
|
+
{
|
|
367
|
+
"license": {
|
|
368
|
+
"id": "Apache-2.0",
|
|
369
|
+
"acknowledgement": "declared"
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"purl": "pkg:npm/tesseract.js@7.0.0",
|
|
374
|
+
"externalReferences": [
|
|
375
|
+
{
|
|
376
|
+
"url": "git+https://github.com/naptha/tesseract.js.git",
|
|
377
|
+
"type": "vcs",
|
|
378
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"url": "https://github.com/naptha/tesseract.js",
|
|
382
|
+
"type": "website",
|
|
383
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"url": "https://github.com/naptha/tesseract.js/issues",
|
|
387
|
+
"type": "issue-tracker",
|
|
388
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"url": "https://registry.npmjs.org/tesseract.js/-/tesseract.js-7.0.0.tgz",
|
|
392
|
+
"type": "distribution",
|
|
393
|
+
"hashes": [
|
|
394
|
+
{
|
|
395
|
+
"alg": "SHA-512",
|
|
396
|
+
"content": "7b13c191dfb3fb033506e324c7f063bf8dce78b07184be64296b33ffd258f835dc5dd8818e201c874578f50477a0026a09a2f9a94444d2fc7d128f86e5813b98"
|
|
397
|
+
}
|
|
398
|
+
],
|
|
399
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
400
|
+
}
|
|
401
|
+
],
|
|
402
|
+
"properties": [
|
|
403
|
+
{
|
|
404
|
+
"name": "cdx:npm:package:path",
|
|
405
|
+
"value": "node_modules/tesseract.js"
|
|
406
|
+
}
|
|
407
|
+
]
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"type": "library",
|
|
411
|
+
"name": "inflate",
|
|
412
|
+
"group": "@tokenizer",
|
|
413
|
+
"version": "0.4.1",
|
|
414
|
+
"bom-ref": "officeparser@7.8.0|@tokenizer/inflate@0.4.1",
|
|
415
|
+
"author": "Borewit",
|
|
416
|
+
"description": "Tokenized zip support",
|
|
417
|
+
"licenses": [
|
|
418
|
+
{
|
|
419
|
+
"license": {
|
|
420
|
+
"id": "MIT",
|
|
421
|
+
"acknowledgement": "declared"
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
],
|
|
425
|
+
"purl": "pkg:npm/%40tokenizer/inflate@0.4.1",
|
|
426
|
+
"externalReferences": [
|
|
427
|
+
{
|
|
428
|
+
"url": "git+https://github.com/Borewit/tokenizer-inflate.git",
|
|
429
|
+
"type": "vcs",
|
|
430
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"url": "https://github.com/Borewit/tokenizer-inflate#readme",
|
|
434
|
+
"type": "website",
|
|
435
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"url": "hhttps://github.com/Borewit/tokenizer-inflate/issues",
|
|
439
|
+
"type": "issue-tracker",
|
|
440
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"url": "https://registry.npmjs.org/@tokenizer/inflate/-/inflate-0.4.1.tgz",
|
|
444
|
+
"type": "distribution",
|
|
445
|
+
"hashes": [
|
|
446
|
+
{
|
|
447
|
+
"alg": "SHA-512",
|
|
448
|
+
"content": "da602ffbca641ba18866217590d8358c08e1dbb203c443cac1d1ae977b277f3b457ab7cf188d4b8c37b3669de2ec11255e89a9a84b4f9a83f1e9cdb082d5ac38"
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"properties": [
|
|
455
|
+
{
|
|
456
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
457
|
+
"value": ">=18"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"name": "cdx:npm:package:path",
|
|
461
|
+
"value": "node_modules/@tokenizer/inflate"
|
|
462
|
+
}
|
|
463
|
+
]
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"type": "library",
|
|
467
|
+
"name": "strtok3",
|
|
468
|
+
"version": "10.3.5",
|
|
469
|
+
"bom-ref": "officeparser@7.8.0|strtok3@10.3.5",
|
|
470
|
+
"author": "Borewit",
|
|
471
|
+
"description": "A promise based streaming tokenizer",
|
|
472
|
+
"licenses": [
|
|
473
|
+
{
|
|
474
|
+
"license": {
|
|
475
|
+
"id": "MIT",
|
|
476
|
+
"acknowledgement": "declared"
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"purl": "pkg:npm/strtok3@10.3.5",
|
|
481
|
+
"externalReferences": [
|
|
482
|
+
{
|
|
483
|
+
"url": "git+https://github.com/Borewit/strtok3.git",
|
|
484
|
+
"type": "vcs",
|
|
485
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"url": "https://github.com/Borewit/strtok3#readme",
|
|
489
|
+
"type": "website",
|
|
490
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
"url": "https://github.com/Borewit/strtok3/issues",
|
|
494
|
+
"type": "issue-tracker",
|
|
495
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"url": "https://registry.npmjs.org/strtok3/-/strtok3-10.3.5.tgz",
|
|
499
|
+
"type": "distribution",
|
|
500
|
+
"hashes": [
|
|
501
|
+
{
|
|
502
|
+
"alg": "SHA-512",
|
|
503
|
+
"content": "922e216507e1e6b5f44032cb90e0a3fa1f8254d92a9a9fc231ff2ff2466990d54aea3190a28332b6accb65851560865c159eb20c1ef411f0fc3ce7055e2179a0"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
507
|
+
}
|
|
508
|
+
],
|
|
509
|
+
"properties": [
|
|
510
|
+
{
|
|
511
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
512
|
+
"value": ">=18"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "cdx:npm:package:path",
|
|
516
|
+
"value": "node_modules/strtok3"
|
|
517
|
+
}
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"type": "library",
|
|
522
|
+
"name": "token-types",
|
|
523
|
+
"version": "6.1.2",
|
|
524
|
+
"bom-ref": "officeparser@7.8.0|token-types@6.1.2",
|
|
525
|
+
"author": "Borewit",
|
|
526
|
+
"description": "Common token types for decoding and encoding numeric and string values",
|
|
527
|
+
"licenses": [
|
|
528
|
+
{
|
|
529
|
+
"license": {
|
|
530
|
+
"id": "MIT",
|
|
531
|
+
"acknowledgement": "declared"
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
],
|
|
535
|
+
"purl": "pkg:npm/token-types@6.1.2",
|
|
536
|
+
"externalReferences": [
|
|
537
|
+
{
|
|
538
|
+
"url": "git+https://github.com/Borewit/token-types.git",
|
|
539
|
+
"type": "vcs",
|
|
540
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"url": "https://github.com/Borewit/token-types#readme",
|
|
544
|
+
"type": "website",
|
|
545
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"url": "https://github.com/Borewit/token-types/issues",
|
|
549
|
+
"type": "issue-tracker",
|
|
550
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"url": "https://registry.npmjs.org/token-types/-/token-types-6.1.2.tgz",
|
|
554
|
+
"type": "distribution",
|
|
555
|
+
"hashes": [
|
|
556
|
+
{
|
|
557
|
+
"alg": "SHA-512",
|
|
558
|
+
"content": "7515dc872f82d0880af163c2eb1bc21c544859851baaa74420a3da2a8fc071350dcf02d32ba007ed18dd2d6b0465c00dfd305db5f530dcf60480faf954fafac3"
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
562
|
+
}
|
|
563
|
+
],
|
|
564
|
+
"properties": [
|
|
565
|
+
{
|
|
566
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
567
|
+
"value": ">=14.16"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"name": "cdx:npm:package:path",
|
|
571
|
+
"value": "node_modules/token-types"
|
|
572
|
+
}
|
|
573
|
+
]
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"type": "library",
|
|
577
|
+
"name": "uint8array-extras",
|
|
578
|
+
"version": "1.5.0",
|
|
579
|
+
"bom-ref": "officeparser@7.8.0|uint8array-extras@1.5.0",
|
|
580
|
+
"author": "Sindre Sorhus",
|
|
581
|
+
"description": "Useful utilities for working with Uint8Array (and Buffer)",
|
|
582
|
+
"licenses": [
|
|
583
|
+
{
|
|
584
|
+
"license": {
|
|
585
|
+
"id": "MIT",
|
|
586
|
+
"acknowledgement": "declared"
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"purl": "pkg:npm/uint8array-extras@1.5.0",
|
|
591
|
+
"externalReferences": [
|
|
592
|
+
{
|
|
593
|
+
"url": "git+https://github.com/sindresorhus/uint8array-extras.git",
|
|
594
|
+
"type": "vcs",
|
|
595
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"url": "https://github.com/sindresorhus/uint8array-extras#readme",
|
|
599
|
+
"type": "website",
|
|
600
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"url": "https://github.com/sindresorhus/uint8array-extras/issues",
|
|
604
|
+
"type": "issue-tracker",
|
|
605
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"url": "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.5.0.tgz",
|
|
609
|
+
"type": "distribution",
|
|
610
|
+
"hashes": [
|
|
611
|
+
{
|
|
612
|
+
"alg": "SHA-512",
|
|
613
|
+
"content": "aef2920620b9cea08288367d9003accd9703bdd007c3020a246df76248f8dce29c5ac9e670144bd3d6135389ce78767c6366bb9753204ddd3c4817bd03c423e8"
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
617
|
+
}
|
|
618
|
+
],
|
|
619
|
+
"properties": [
|
|
620
|
+
{
|
|
621
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
622
|
+
"value": ">=18"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "cdx:npm:package:path",
|
|
626
|
+
"value": "node_modules/uint8array-extras"
|
|
627
|
+
}
|
|
628
|
+
]
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"type": "library",
|
|
632
|
+
"name": "canvas",
|
|
633
|
+
"group": "@napi-rs",
|
|
634
|
+
"version": "1.0.1",
|
|
635
|
+
"bom-ref": "officeparser@7.8.0|@napi-rs/canvas@1.0.1",
|
|
636
|
+
"description": "Canvas for Node.js with skia backend",
|
|
637
|
+
"scope": "optional",
|
|
638
|
+
"licenses": [
|
|
639
|
+
{
|
|
640
|
+
"license": {
|
|
641
|
+
"id": "MIT",
|
|
642
|
+
"acknowledgement": "declared"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"purl": "pkg:npm/%40napi-rs/canvas@1.0.1",
|
|
647
|
+
"externalReferences": [
|
|
648
|
+
{
|
|
649
|
+
"url": "git+https://github.com/Brooooooklyn/canvas.git",
|
|
650
|
+
"type": "vcs",
|
|
651
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
"url": "https://github.com/Brooooooklyn/canvas#readme",
|
|
655
|
+
"type": "website",
|
|
656
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"url": "https://github.com/Brooooooklyn/canvas/issues",
|
|
660
|
+
"type": "issue-tracker",
|
|
661
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"url": "https://registry.npmjs.org/@napi-rs/canvas/-/canvas-1.0.1.tgz",
|
|
665
|
+
"type": "distribution",
|
|
666
|
+
"hashes": [
|
|
667
|
+
{
|
|
668
|
+
"alg": "SHA-512",
|
|
669
|
+
"content": "98f0f8dc6ee95db4212066bbcf82294ffbd79b58db17c701335a18e54aa32fc2d269308d1a1362d8b89d73fd3e2f029b362a9bbff4ead099414702aef8b5b78b"
|
|
670
|
+
}
|
|
671
|
+
],
|
|
672
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
673
|
+
}
|
|
674
|
+
],
|
|
675
|
+
"properties": [
|
|
676
|
+
{
|
|
677
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
678
|
+
"value": ">= 10"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
"name": "cdx:npm:package:path",
|
|
682
|
+
"value": "node_modules/@napi-rs/canvas"
|
|
683
|
+
}
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"type": "library",
|
|
688
|
+
"name": "bmp-js",
|
|
689
|
+
"version": "0.1.0",
|
|
690
|
+
"bom-ref": "officeparser@7.8.0|bmp-js@0.1.0",
|
|
691
|
+
"author": "shaozilee",
|
|
692
|
+
"description": "A pure javascript BMP encoder and decoder",
|
|
693
|
+
"licenses": [
|
|
694
|
+
{
|
|
695
|
+
"license": {
|
|
696
|
+
"id": "MIT",
|
|
697
|
+
"acknowledgement": "declared"
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
],
|
|
701
|
+
"purl": "pkg:npm/bmp-js@0.1.0",
|
|
702
|
+
"externalReferences": [
|
|
703
|
+
{
|
|
704
|
+
"url": "git+https://github.com/shaozilee/bmp-js.git",
|
|
705
|
+
"type": "vcs",
|
|
706
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"url": "https://github.com/shaozilee/bmp-js#readme",
|
|
710
|
+
"type": "website",
|
|
711
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"url": "https://github.com/shaozilee/bmp-js/issues",
|
|
715
|
+
"type": "issue-tracker",
|
|
716
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
"url": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz",
|
|
720
|
+
"type": "distribution",
|
|
721
|
+
"hashes": [
|
|
722
|
+
{
|
|
723
|
+
"alg": "SHA-512",
|
|
724
|
+
"content": "bc7752d7d0a763787088d7646aa93ddc3be354b7db11c23c9b2b38523b96ae55f585a0e6ae8a3ca38c42ce1e300fa0c657a1f1442c9abb084746a3137c446d8f"
|
|
725
|
+
}
|
|
726
|
+
],
|
|
727
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
728
|
+
}
|
|
729
|
+
],
|
|
730
|
+
"properties": [
|
|
731
|
+
{
|
|
732
|
+
"name": "cdx:npm:package:path",
|
|
733
|
+
"value": "node_modules/bmp-js"
|
|
734
|
+
}
|
|
735
|
+
]
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"type": "library",
|
|
739
|
+
"name": "idb-keyval",
|
|
740
|
+
"version": "6.2.2",
|
|
741
|
+
"bom-ref": "officeparser@7.8.0|idb-keyval@6.2.2",
|
|
742
|
+
"author": "Jake Archibald",
|
|
743
|
+
"description": "A super-simple-small keyval store built on top of IndexedDB",
|
|
744
|
+
"licenses": [
|
|
745
|
+
{
|
|
746
|
+
"license": {
|
|
747
|
+
"id": "Apache-2.0",
|
|
748
|
+
"acknowledgement": "declared"
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
],
|
|
752
|
+
"purl": "pkg:npm/idb-keyval@6.2.2",
|
|
753
|
+
"externalReferences": [
|
|
754
|
+
{
|
|
755
|
+
"url": "git+https://github.com/jakearchibald/idb-keyval.git",
|
|
756
|
+
"type": "vcs",
|
|
757
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"url": "https://github.com/jakearchibald/idb-keyval#readme",
|
|
761
|
+
"type": "website",
|
|
762
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"url": "https://github.com/jakearchibald/idb-keyval/issues",
|
|
766
|
+
"type": "issue-tracker",
|
|
767
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
768
|
+
},
|
|
769
|
+
{
|
|
770
|
+
"url": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz",
|
|
771
|
+
"type": "distribution",
|
|
772
|
+
"hashes": [
|
|
773
|
+
{
|
|
774
|
+
"alg": "SHA-512",
|
|
775
|
+
"content": "ca30fd9c0449fe36f583e0af0f4b658541ceac9f52cb43fc4fd305dd868b9479d2469c0f7e94d7d1722fa66c37800254984bb71622022c10cf5d5c3212fae57a"
|
|
776
|
+
}
|
|
777
|
+
],
|
|
778
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
779
|
+
}
|
|
780
|
+
],
|
|
781
|
+
"properties": [
|
|
782
|
+
{
|
|
783
|
+
"name": "cdx:npm:package:path",
|
|
784
|
+
"value": "node_modules/idb-keyval"
|
|
785
|
+
}
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"type": "library",
|
|
790
|
+
"name": "is-url",
|
|
791
|
+
"version": "1.2.4",
|
|
792
|
+
"bom-ref": "officeparser@7.8.0|is-url@1.2.4",
|
|
793
|
+
"description": "Check whether a string is a URL.",
|
|
794
|
+
"licenses": [
|
|
795
|
+
{
|
|
796
|
+
"license": {
|
|
797
|
+
"id": "MIT",
|
|
798
|
+
"acknowledgement": "declared"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
],
|
|
802
|
+
"purl": "pkg:npm/is-url@1.2.4",
|
|
803
|
+
"externalReferences": [
|
|
804
|
+
{
|
|
805
|
+
"url": "git+https://github.com/segmentio/is-url.git",
|
|
806
|
+
"type": "vcs",
|
|
807
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"url": "https://github.com/segmentio/is-url#readme",
|
|
811
|
+
"type": "website",
|
|
812
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
"url": "https://github.com/segmentio/is-url/issues",
|
|
816
|
+
"type": "issue-tracker",
|
|
817
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
"url": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz",
|
|
821
|
+
"type": "distribution",
|
|
822
|
+
"hashes": [
|
|
823
|
+
{
|
|
824
|
+
"alg": "SHA-512",
|
|
825
|
+
"content": "213bc68a6f058518987b8210e6e1d2923ee955a3c3ac24e435ddf2ab7715ee26407097474d430f3041dca923b2f7167da857a7402be2fb6c231fd6b59d7a87c3"
|
|
826
|
+
}
|
|
827
|
+
],
|
|
828
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
829
|
+
}
|
|
830
|
+
],
|
|
831
|
+
"properties": [
|
|
832
|
+
{
|
|
833
|
+
"name": "cdx:npm:package:path",
|
|
834
|
+
"value": "node_modules/is-url"
|
|
835
|
+
}
|
|
836
|
+
]
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"type": "library",
|
|
840
|
+
"name": "node-fetch",
|
|
841
|
+
"version": "2.7.0",
|
|
842
|
+
"bom-ref": "officeparser@7.8.0|node-fetch@2.7.0",
|
|
843
|
+
"author": "David Frank",
|
|
844
|
+
"description": "A light-weight module that brings window.fetch to node.js",
|
|
845
|
+
"licenses": [
|
|
846
|
+
{
|
|
847
|
+
"license": {
|
|
848
|
+
"id": "MIT",
|
|
849
|
+
"acknowledgement": "declared"
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
],
|
|
853
|
+
"purl": "pkg:npm/node-fetch@2.7.0",
|
|
854
|
+
"externalReferences": [
|
|
855
|
+
{
|
|
856
|
+
"url": "git+https://github.com/bitinn/node-fetch.git",
|
|
857
|
+
"type": "vcs",
|
|
858
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
"url": "https://github.com/bitinn/node-fetch",
|
|
862
|
+
"type": "website",
|
|
863
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"url": "https://github.com/bitinn/node-fetch/issues",
|
|
867
|
+
"type": "issue-tracker",
|
|
868
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
"url": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz",
|
|
872
|
+
"type": "distribution",
|
|
873
|
+
"hashes": [
|
|
874
|
+
{
|
|
875
|
+
"alg": "SHA-512",
|
|
876
|
+
"content": "7381517d49bf75b71667b53ed56ab40300b214bfb79edd9b130d39c1fc52cfe0d6a56b22b609928189b2d9d41d5b2282d7af7810b3ea32cfd8cd448da332edf0"
|
|
877
|
+
}
|
|
878
|
+
],
|
|
879
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"properties": [
|
|
883
|
+
{
|
|
884
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
885
|
+
"value": "4.x || >=6.0.0"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
"name": "cdx:npm:package:path",
|
|
889
|
+
"value": "node_modules/node-fetch"
|
|
890
|
+
}
|
|
891
|
+
]
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"type": "library",
|
|
895
|
+
"name": "opencollective-postinstall",
|
|
896
|
+
"version": "2.0.3",
|
|
897
|
+
"bom-ref": "officeparser@7.8.0|opencollective-postinstall@2.0.3",
|
|
898
|
+
"author": "Xavier Damman",
|
|
899
|
+
"description": "Lightweight npm postinstall message to invite people to donate to your collective",
|
|
900
|
+
"licenses": [
|
|
901
|
+
{
|
|
902
|
+
"license": {
|
|
903
|
+
"id": "MIT",
|
|
904
|
+
"acknowledgement": "declared"
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"purl": "pkg:npm/opencollective-postinstall@2.0.3",
|
|
909
|
+
"externalReferences": [
|
|
910
|
+
{
|
|
911
|
+
"url": "git+https://github.com/opencollective/opencollective-postinstall.git",
|
|
912
|
+
"type": "vcs",
|
|
913
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
"url": "https://github.com/opencollective/opencollective-postinstall#readme",
|
|
917
|
+
"type": "website",
|
|
918
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"url": "https://github.com/opencollective/opencollective-postinstall/issues",
|
|
922
|
+
"type": "issue-tracker",
|
|
923
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
924
|
+
},
|
|
925
|
+
{
|
|
926
|
+
"url": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.3.tgz",
|
|
927
|
+
"type": "distribution",
|
|
928
|
+
"hashes": [
|
|
929
|
+
{
|
|
930
|
+
"alg": "SHA-512",
|
|
931
|
+
"content": "f0057fb02b6ecd4793a3c8102b9a83673011aee941dde82d2f3160b5ea81dad713e0cc3b07c2adec97031e696d8f3e853801ecbd37af93bd206446e1338652f5"
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
935
|
+
}
|
|
936
|
+
],
|
|
937
|
+
"properties": [
|
|
938
|
+
{
|
|
939
|
+
"name": "cdx:npm:package:path",
|
|
940
|
+
"value": "node_modules/opencollective-postinstall"
|
|
941
|
+
}
|
|
942
|
+
]
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"type": "library",
|
|
946
|
+
"name": "regenerator-runtime",
|
|
947
|
+
"version": "0.13.11",
|
|
948
|
+
"bom-ref": "officeparser@7.8.0|regenerator-runtime@0.13.11",
|
|
949
|
+
"author": "Ben Newman",
|
|
950
|
+
"description": "Runtime for Regenerator-compiled generator and async functions.",
|
|
951
|
+
"licenses": [
|
|
952
|
+
{
|
|
953
|
+
"license": {
|
|
954
|
+
"id": "MIT",
|
|
955
|
+
"acknowledgement": "declared"
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
],
|
|
959
|
+
"purl": "pkg:npm/regenerator-runtime@0.13.11",
|
|
960
|
+
"externalReferences": [
|
|
961
|
+
{
|
|
962
|
+
"url": "git+https://github.com/facebook/regenerator.git#main",
|
|
963
|
+
"type": "vcs",
|
|
964
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"url": "https://github.com/facebook/regenerator/tree/main#readme",
|
|
968
|
+
"type": "website",
|
|
969
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"url": "https://github.com/facebook/regenerator/issues",
|
|
973
|
+
"type": "issue-tracker",
|
|
974
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"url": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
|
|
978
|
+
"type": "distribution",
|
|
979
|
+
"hashes": [
|
|
980
|
+
{
|
|
981
|
+
"alg": "SHA-512",
|
|
982
|
+
"content": "918d40655af645afadfa9895689e20c5a15a45e6551f8d0028da3b5025fa5be744c01a3fda8649cea7ee375a8bab5a0be39a39e9c3da4d710bc2b4e1f05a6082"
|
|
983
|
+
}
|
|
984
|
+
],
|
|
985
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
986
|
+
}
|
|
987
|
+
],
|
|
988
|
+
"properties": [
|
|
989
|
+
{
|
|
990
|
+
"name": "cdx:npm:package:path",
|
|
991
|
+
"value": "node_modules/regenerator-runtime"
|
|
992
|
+
}
|
|
993
|
+
]
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"type": "library",
|
|
997
|
+
"name": "tesseract.js-core",
|
|
998
|
+
"version": "7.0.0",
|
|
999
|
+
"bom-ref": "officeparser@7.8.0|tesseract.js-core@7.0.0",
|
|
1000
|
+
"author": "antimatter15",
|
|
1001
|
+
"description": "Tesseract C++ API in Pure Javascript",
|
|
1002
|
+
"licenses": [
|
|
1003
|
+
{
|
|
1004
|
+
"license": {
|
|
1005
|
+
"id": "Apache-2.0",
|
|
1006
|
+
"acknowledgement": "declared"
|
|
1007
|
+
}
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"purl": "pkg:npm/tesseract.js-core@7.0.0",
|
|
1011
|
+
"externalReferences": [
|
|
1012
|
+
{
|
|
1013
|
+
"url": "git+https://github.com/naptha/tesseract.js-core.git",
|
|
1014
|
+
"type": "vcs",
|
|
1015
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"url": "https://github.com/naptha/tesseract.js-core",
|
|
1019
|
+
"type": "website",
|
|
1020
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"url": "https://github.com/naptha/tesseract.js-core/issues",
|
|
1024
|
+
"type": "issue-tracker",
|
|
1025
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"url": "https://registry.npmjs.org/tesseract.js-core/-/tesseract.js-core-7.0.0.tgz",
|
|
1029
|
+
"type": "distribution",
|
|
1030
|
+
"hashes": [
|
|
1031
|
+
{
|
|
1032
|
+
"alg": "SHA-512",
|
|
1033
|
+
"content": "5a7347e75f0dce66d2abdce04cf7a817c73ec668a54bcac5225d5829b93fa6dbae73ba7a70b3442cdb8f033726b18c38e7471ae9b2daf23dedd1502dab8df957"
|
|
1034
|
+
}
|
|
1035
|
+
],
|
|
1036
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1037
|
+
}
|
|
1038
|
+
],
|
|
1039
|
+
"properties": [
|
|
1040
|
+
{
|
|
1041
|
+
"name": "cdx:npm:package:path",
|
|
1042
|
+
"value": "node_modules/tesseract.js-core"
|
|
1043
|
+
}
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"type": "library",
|
|
1048
|
+
"name": "wasm-feature-detect",
|
|
1049
|
+
"version": "1.8.0",
|
|
1050
|
+
"bom-ref": "officeparser@7.8.0|wasm-feature-detect@1.8.0",
|
|
1051
|
+
"author": "Surma",
|
|
1052
|
+
"description": "A small library to detect which features of WebAssembly are supported in your current browser.",
|
|
1053
|
+
"licenses": [
|
|
1054
|
+
{
|
|
1055
|
+
"license": {
|
|
1056
|
+
"id": "Apache-2.0",
|
|
1057
|
+
"acknowledgement": "declared"
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
],
|
|
1061
|
+
"purl": "pkg:npm/wasm-feature-detect@1.8.0",
|
|
1062
|
+
"externalReferences": [
|
|
1063
|
+
{
|
|
1064
|
+
"url": "git+https://github.com/GoogleChromeLabs/wasm-feature-detect.git",
|
|
1065
|
+
"type": "vcs",
|
|
1066
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
"url": "https://github.com/GoogleChromeLabs/wasm-feature-detect#readme",
|
|
1070
|
+
"type": "website",
|
|
1071
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"url": "https://github.com/GoogleChromeLabs/wasm-feature-detect/issues",
|
|
1075
|
+
"type": "issue-tracker",
|
|
1076
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"url": "https://registry.npmjs.org/wasm-feature-detect/-/wasm-feature-detect-1.8.0.tgz",
|
|
1080
|
+
"type": "distribution",
|
|
1081
|
+
"hashes": [
|
|
1082
|
+
{
|
|
1083
|
+
"alg": "SHA-512",
|
|
1084
|
+
"content": "ce4b1a2ca3367d59670798d0403a8a5d7c181cb414547f5eb3ee5338e1f018e54938279104288f8f04a0fb7b4dd807530b38e0962e238a3087dbdd245dbff359"
|
|
1085
|
+
}
|
|
1086
|
+
],
|
|
1087
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1088
|
+
}
|
|
1089
|
+
],
|
|
1090
|
+
"properties": [
|
|
1091
|
+
{
|
|
1092
|
+
"name": "cdx:npm:package:path",
|
|
1093
|
+
"value": "node_modules/wasm-feature-detect"
|
|
1094
|
+
}
|
|
1095
|
+
]
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"type": "library",
|
|
1099
|
+
"name": "zlibjs",
|
|
1100
|
+
"version": "0.3.1",
|
|
1101
|
+
"bom-ref": "officeparser@7.8.0|zlibjs@0.3.1",
|
|
1102
|
+
"author": "Yuta Imaya",
|
|
1103
|
+
"description": "zlib, gzip and zip implementation in JavaScript",
|
|
1104
|
+
"licenses": [
|
|
1105
|
+
{
|
|
1106
|
+
"license": {
|
|
1107
|
+
"id": "MIT",
|
|
1108
|
+
"acknowledgement": "declared"
|
|
1109
|
+
}
|
|
1110
|
+
}
|
|
1111
|
+
],
|
|
1112
|
+
"purl": "pkg:npm/zlibjs@0.3.1",
|
|
1113
|
+
"externalReferences": [
|
|
1114
|
+
{
|
|
1115
|
+
"url": "git://github.com/imaya/zlib.js.git",
|
|
1116
|
+
"type": "vcs",
|
|
1117
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"url": "https://github.com/imaya/zlib.js",
|
|
1121
|
+
"type": "website",
|
|
1122
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1123
|
+
},
|
|
1124
|
+
{
|
|
1125
|
+
"url": "https://github.com/imaya/zlib.js/issues",
|
|
1126
|
+
"type": "issue-tracker",
|
|
1127
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"url": "https://registry.npmjs.org/zlibjs/-/zlibjs-0.3.1.tgz",
|
|
1131
|
+
"type": "distribution",
|
|
1132
|
+
"hashes": [
|
|
1133
|
+
{
|
|
1134
|
+
"alg": "SHA-512",
|
|
1135
|
+
"content": "f89f51ae04ca3a69711520c7a34a48d7133a04b554bfea34653f4036d0b11a48c8542094771f5a95417c1a6f9d18b29b9249227562071436470cca5f213b78fb"
|
|
1136
|
+
}
|
|
1137
|
+
],
|
|
1138
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1139
|
+
}
|
|
1140
|
+
],
|
|
1141
|
+
"properties": [
|
|
1142
|
+
{
|
|
1143
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
1144
|
+
"value": "*"
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
"name": "cdx:npm:package:path",
|
|
1148
|
+
"value": "node_modules/zlibjs"
|
|
1149
|
+
}
|
|
1150
|
+
]
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
"type": "library",
|
|
1154
|
+
"name": "debug",
|
|
1155
|
+
"version": "4.4.3",
|
|
1156
|
+
"bom-ref": "officeparser@7.8.0|debug@4.4.3",
|
|
1157
|
+
"author": "Josh Junon",
|
|
1158
|
+
"description": "Lightweight debugging utility for Node.js and the browser",
|
|
1159
|
+
"licenses": [
|
|
1160
|
+
{
|
|
1161
|
+
"license": {
|
|
1162
|
+
"id": "MIT",
|
|
1163
|
+
"acknowledgement": "declared"
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
],
|
|
1167
|
+
"purl": "pkg:npm/debug@4.4.3",
|
|
1168
|
+
"externalReferences": [
|
|
1169
|
+
{
|
|
1170
|
+
"url": "git://github.com/debug-js/debug.git",
|
|
1171
|
+
"type": "vcs",
|
|
1172
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
"url": "https://github.com/debug-js/debug#readme",
|
|
1176
|
+
"type": "website",
|
|
1177
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1178
|
+
},
|
|
1179
|
+
{
|
|
1180
|
+
"url": "https://github.com/debug-js/debug/issues",
|
|
1181
|
+
"type": "issue-tracker",
|
|
1182
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
"url": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
1186
|
+
"type": "distribution",
|
|
1187
|
+
"hashes": [
|
|
1188
|
+
{
|
|
1189
|
+
"alg": "SHA-512",
|
|
1190
|
+
"content": "446c305a7c10be455f6af295b76d8518bc3ec5849dcc04709b4aeee83853540dee994e6165cdbc57790ee2cb6062bcab4e52e9baf808f468a28e5b408cd6dca8"
|
|
1191
|
+
}
|
|
1192
|
+
],
|
|
1193
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1194
|
+
}
|
|
1195
|
+
],
|
|
1196
|
+
"properties": [
|
|
1197
|
+
{
|
|
1198
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
1199
|
+
"value": ">=6.0"
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"name": "cdx:npm:package:path",
|
|
1203
|
+
"value": "node_modules/debug"
|
|
1204
|
+
}
|
|
1205
|
+
]
|
|
1206
|
+
},
|
|
1207
|
+
{
|
|
1208
|
+
"type": "library",
|
|
1209
|
+
"name": "token",
|
|
1210
|
+
"group": "@tokenizer",
|
|
1211
|
+
"version": "0.3.0",
|
|
1212
|
+
"bom-ref": "officeparser@7.8.0|@tokenizer/token@0.3.0",
|
|
1213
|
+
"author": "Borewit",
|
|
1214
|
+
"description": "TypeScript definition for strtok3 token",
|
|
1215
|
+
"licenses": [
|
|
1216
|
+
{
|
|
1217
|
+
"license": {
|
|
1218
|
+
"id": "MIT",
|
|
1219
|
+
"acknowledgement": "declared"
|
|
1220
|
+
}
|
|
1221
|
+
}
|
|
1222
|
+
],
|
|
1223
|
+
"purl": "pkg:npm/%40tokenizer/token@0.3.0",
|
|
1224
|
+
"externalReferences": [
|
|
1225
|
+
{
|
|
1226
|
+
"url": "git+https://github.com/Borewit/tokenizer-token.git",
|
|
1227
|
+
"type": "vcs",
|
|
1228
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
"url": "https://github.com/Borewit/tokenizer-token#readme",
|
|
1232
|
+
"type": "website",
|
|
1233
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"url": "https://github.com/Borewit/tokenizer-token/issues",
|
|
1237
|
+
"type": "issue-tracker",
|
|
1238
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"url": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
|
|
1242
|
+
"type": "distribution",
|
|
1243
|
+
"hashes": [
|
|
1244
|
+
{
|
|
1245
|
+
"alg": "SHA-512",
|
|
1246
|
+
"content": "3af8c5fb3e752f7a2fd0ec8053476ecec62ebced353c7ef1e2de83271fa0b9a8604e704792125d1bbb2841e4d214b58ddde7e71f289b67867c97612e5b024ddc"
|
|
1247
|
+
}
|
|
1248
|
+
],
|
|
1249
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"properties": [
|
|
1253
|
+
{
|
|
1254
|
+
"name": "cdx:npm:package:path",
|
|
1255
|
+
"value": "node_modules/@tokenizer/token"
|
|
1256
|
+
}
|
|
1257
|
+
]
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"type": "library",
|
|
1261
|
+
"name": "text-codec",
|
|
1262
|
+
"group": "@borewit",
|
|
1263
|
+
"version": "0.2.2",
|
|
1264
|
+
"bom-ref": "officeparser@7.8.0|@borewit/text-codec@0.2.2",
|
|
1265
|
+
"author": "Borewit",
|
|
1266
|
+
"description": "Text Decoder",
|
|
1267
|
+
"licenses": [
|
|
1268
|
+
{
|
|
1269
|
+
"license": {
|
|
1270
|
+
"id": "MIT",
|
|
1271
|
+
"acknowledgement": "declared"
|
|
1272
|
+
}
|
|
1273
|
+
}
|
|
1274
|
+
],
|
|
1275
|
+
"purl": "pkg:npm/%40borewit/text-codec@0.2.2",
|
|
1276
|
+
"externalReferences": [
|
|
1277
|
+
{
|
|
1278
|
+
"url": "git+https://github.com/Borewit/text-codec.git",
|
|
1279
|
+
"type": "vcs",
|
|
1280
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"url": "https://github.com/Borewit/text-codec#readme",
|
|
1284
|
+
"type": "website",
|
|
1285
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"url": "https://github.com/Borewit/text-codec/issues",
|
|
1289
|
+
"type": "issue-tracker",
|
|
1290
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"url": "https://registry.npmjs.org/@borewit/text-codec/-/text-codec-0.2.2.tgz",
|
|
1294
|
+
"type": "distribution",
|
|
1295
|
+
"hashes": [
|
|
1296
|
+
{
|
|
1297
|
+
"alg": "SHA-512",
|
|
1298
|
+
"content": "0c36917a1b2c83568dac7e3eda19e3d41eef9d41848d4e8e225c9176431dd1a51d214bca5eb25f5eccbc2d5b57032ec346f61596e59b32ca6c461cf695c5b499"
|
|
1299
|
+
}
|
|
1300
|
+
],
|
|
1301
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1302
|
+
}
|
|
1303
|
+
],
|
|
1304
|
+
"properties": [
|
|
1305
|
+
{
|
|
1306
|
+
"name": "cdx:npm:package:path",
|
|
1307
|
+
"value": "node_modules/@borewit/text-codec"
|
|
1308
|
+
}
|
|
1309
|
+
]
|
|
1310
|
+
},
|
|
1311
|
+
{
|
|
1312
|
+
"type": "library",
|
|
1313
|
+
"name": "ieee754",
|
|
1314
|
+
"version": "1.2.1",
|
|
1315
|
+
"bom-ref": "officeparser@7.8.0|ieee754@1.2.1",
|
|
1316
|
+
"author": "Feross Aboukhadijeh",
|
|
1317
|
+
"description": "Read/write IEEE754 floating point numbers from/to a Buffer or array-like object",
|
|
1318
|
+
"licenses": [
|
|
1319
|
+
{
|
|
1320
|
+
"license": {
|
|
1321
|
+
"id": "BSD-3-Clause",
|
|
1322
|
+
"acknowledgement": "declared"
|
|
1323
|
+
}
|
|
1324
|
+
}
|
|
1325
|
+
],
|
|
1326
|
+
"purl": "pkg:npm/ieee754@1.2.1",
|
|
1327
|
+
"externalReferences": [
|
|
1328
|
+
{
|
|
1329
|
+
"url": "git://github.com/feross/ieee754.git",
|
|
1330
|
+
"type": "vcs",
|
|
1331
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"url": "https://github.com/feross/ieee754#readme",
|
|
1335
|
+
"type": "website",
|
|
1336
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
"url": "https://github.com/feross/ieee754/issues",
|
|
1340
|
+
"type": "issue-tracker",
|
|
1341
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"url": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
|
|
1345
|
+
"type": "distribution",
|
|
1346
|
+
"hashes": [
|
|
1347
|
+
{
|
|
1348
|
+
"alg": "SHA-512",
|
|
1349
|
+
"content": "75ccaa843bd7d42e3a95765c56a0a92be16d31141574830debf0dfe63b36ce8b94b2a1bb23ab05c62b480beeca60adbd29d5ce2c776ef732f8b059e85509ea68"
|
|
1350
|
+
}
|
|
1351
|
+
],
|
|
1352
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1353
|
+
}
|
|
1354
|
+
],
|
|
1355
|
+
"properties": [
|
|
1356
|
+
{
|
|
1357
|
+
"name": "cdx:npm:package:path",
|
|
1358
|
+
"value": "node_modules/ieee754"
|
|
1359
|
+
}
|
|
1360
|
+
]
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
"type": "library",
|
|
1364
|
+
"name": "canvas-linux-x64-gnu",
|
|
1365
|
+
"group": "@napi-rs",
|
|
1366
|
+
"version": "1.0.1",
|
|
1367
|
+
"bom-ref": "officeparser@7.8.0|@napi-rs/canvas-linux-x64-gnu@1.0.1",
|
|
1368
|
+
"description": "Canvas for Node.js with skia backend",
|
|
1369
|
+
"scope": "optional",
|
|
1370
|
+
"licenses": [
|
|
1371
|
+
{
|
|
1372
|
+
"license": {
|
|
1373
|
+
"id": "MIT",
|
|
1374
|
+
"acknowledgement": "declared"
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
],
|
|
1378
|
+
"purl": "pkg:npm/%40napi-rs/canvas-linux-x64-gnu@1.0.1",
|
|
1379
|
+
"externalReferences": [
|
|
1380
|
+
{
|
|
1381
|
+
"url": "git+https://github.com/Brooooooklyn/canvas.git",
|
|
1382
|
+
"type": "vcs",
|
|
1383
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
"url": "https://github.com/Brooooooklyn/canvas#readme",
|
|
1387
|
+
"type": "website",
|
|
1388
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"url": "https://github.com/Brooooooklyn/canvas/issues",
|
|
1392
|
+
"type": "issue-tracker",
|
|
1393
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"url": "https://registry.npmjs.org/@napi-rs/canvas-linux-x64-gnu/-/canvas-linux-x64-gnu-1.0.1.tgz",
|
|
1397
|
+
"type": "distribution",
|
|
1398
|
+
"hashes": [
|
|
1399
|
+
{
|
|
1400
|
+
"alg": "SHA-512",
|
|
1401
|
+
"content": "5bf882daa2591aa28a409d09acda37424868032fcfbf39667582d6f18cf9fcbe97813e5deeddba767aa03f6ac26cbe7c3f709b3f0ec44b4473f0e1b4827ec979"
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1405
|
+
}
|
|
1406
|
+
],
|
|
1407
|
+
"properties": [
|
|
1408
|
+
{
|
|
1409
|
+
"name": "cdx:npm:package:constraint:engine:node",
|
|
1410
|
+
"value": ">= 10"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
"name": "cdx:npm:package:path",
|
|
1414
|
+
"value": "node_modules/@napi-rs/canvas-linux-x64-gnu"
|
|
1415
|
+
}
|
|
1416
|
+
]
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"type": "library",
|
|
1420
|
+
"name": "whatwg-url",
|
|
1421
|
+
"version": "5.0.0",
|
|
1422
|
+
"bom-ref": "officeparser@7.8.0|whatwg-url@5.0.0",
|
|
1423
|
+
"author": "Sebastian Mayr",
|
|
1424
|
+
"description": "An implementation of the WHATWG URL Standard's URL API and parsing machinery",
|
|
1425
|
+
"licenses": [
|
|
1426
|
+
{
|
|
1427
|
+
"license": {
|
|
1428
|
+
"id": "MIT",
|
|
1429
|
+
"acknowledgement": "declared"
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
],
|
|
1433
|
+
"purl": "pkg:npm/whatwg-url@5.0.0",
|
|
1434
|
+
"externalReferences": [
|
|
1435
|
+
{
|
|
1436
|
+
"url": "git+https://github.com/jsdom/whatwg-url.git",
|
|
1437
|
+
"type": "vcs",
|
|
1438
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
"url": "https://github.com/jsdom/whatwg-url#readme",
|
|
1442
|
+
"type": "website",
|
|
1443
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
"url": "https://github.com/jsdom/whatwg-url/issues",
|
|
1447
|
+
"type": "issue-tracker",
|
|
1448
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1449
|
+
},
|
|
1450
|
+
{
|
|
1451
|
+
"url": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz",
|
|
1452
|
+
"type": "distribution",
|
|
1453
|
+
"hashes": [
|
|
1454
|
+
{
|
|
1455
|
+
"alg": "SHA-512",
|
|
1456
|
+
"content": "b1a139ee7ba9c64eafdc7637e7e8f307061ad2b292cb45d1f094b164fc202ebef2b34201ce11af880d7f4d41892e6495aacf296fd027bc809712e3872e9ad84f"
|
|
1457
|
+
}
|
|
1458
|
+
],
|
|
1459
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1460
|
+
}
|
|
1461
|
+
],
|
|
1462
|
+
"properties": [
|
|
1463
|
+
{
|
|
1464
|
+
"name": "cdx:npm:package:path",
|
|
1465
|
+
"value": "node_modules/whatwg-url"
|
|
1466
|
+
}
|
|
1467
|
+
]
|
|
1468
|
+
},
|
|
1469
|
+
{
|
|
1470
|
+
"type": "library",
|
|
1471
|
+
"name": "ms",
|
|
1472
|
+
"version": "2.1.3",
|
|
1473
|
+
"bom-ref": "officeparser@7.8.0|ms@2.1.3",
|
|
1474
|
+
"description": "Tiny millisecond conversion utility",
|
|
1475
|
+
"licenses": [
|
|
1476
|
+
{
|
|
1477
|
+
"license": {
|
|
1478
|
+
"id": "MIT",
|
|
1479
|
+
"acknowledgement": "declared"
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
],
|
|
1483
|
+
"purl": "pkg:npm/ms@2.1.3",
|
|
1484
|
+
"externalReferences": [
|
|
1485
|
+
{
|
|
1486
|
+
"url": "git+https://github.com/vercel/ms.git",
|
|
1487
|
+
"type": "vcs",
|
|
1488
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"url": "https://github.com/vercel/ms#readme",
|
|
1492
|
+
"type": "website",
|
|
1493
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1494
|
+
},
|
|
1495
|
+
{
|
|
1496
|
+
"url": "https://github.com/vercel/ms/issues",
|
|
1497
|
+
"type": "issue-tracker",
|
|
1498
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
"url": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
1502
|
+
"type": "distribution",
|
|
1503
|
+
"hashes": [
|
|
1504
|
+
{
|
|
1505
|
+
"alg": "SHA-512",
|
|
1506
|
+
"content": "e85973b9b4cb646dc9d9afcd542025784863ceae68c601f268253dc985ef70bb2fa1568726afece715c8ebf5d73fab73ed1f7100eb479d23bfb57b45dd645394"
|
|
1507
|
+
}
|
|
1508
|
+
],
|
|
1509
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1510
|
+
}
|
|
1511
|
+
],
|
|
1512
|
+
"properties": [
|
|
1513
|
+
{
|
|
1514
|
+
"name": "cdx:npm:package:path",
|
|
1515
|
+
"value": "node_modules/ms"
|
|
1516
|
+
}
|
|
1517
|
+
]
|
|
1518
|
+
},
|
|
1519
|
+
{
|
|
1520
|
+
"type": "library",
|
|
1521
|
+
"name": "tr46",
|
|
1522
|
+
"version": "0.0.3",
|
|
1523
|
+
"bom-ref": "officeparser@7.8.0|tr46@0.0.3",
|
|
1524
|
+
"author": "Sebastian Mayr",
|
|
1525
|
+
"description": "An implementation of the Unicode TR46 spec",
|
|
1526
|
+
"licenses": [
|
|
1527
|
+
{
|
|
1528
|
+
"license": {
|
|
1529
|
+
"id": "MIT",
|
|
1530
|
+
"acknowledgement": "declared"
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
],
|
|
1534
|
+
"purl": "pkg:npm/tr46@0.0.3",
|
|
1535
|
+
"externalReferences": [
|
|
1536
|
+
{
|
|
1537
|
+
"url": "git+https://github.com/Sebmaster/tr46.js.git",
|
|
1538
|
+
"type": "vcs",
|
|
1539
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"url": "https://github.com/Sebmaster/tr46.js#readme",
|
|
1543
|
+
"type": "website",
|
|
1544
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1545
|
+
},
|
|
1546
|
+
{
|
|
1547
|
+
"url": "https://github.com/Sebmaster/tr46.js/issues",
|
|
1548
|
+
"type": "issue-tracker",
|
|
1549
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1550
|
+
},
|
|
1551
|
+
{
|
|
1552
|
+
"url": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz",
|
|
1553
|
+
"type": "distribution",
|
|
1554
|
+
"hashes": [
|
|
1555
|
+
{
|
|
1556
|
+
"alg": "SHA-512",
|
|
1557
|
+
"content": "37758cb2ea95eba953df40ab5cd6c48f1e06130968c37bfaaebe2609cbfaa6b9dfc214b4d6b920c857633cd05877d6ebecba57575f849a1d357c79ead86760af"
|
|
1558
|
+
}
|
|
1559
|
+
],
|
|
1560
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1561
|
+
}
|
|
1562
|
+
],
|
|
1563
|
+
"properties": [
|
|
1564
|
+
{
|
|
1565
|
+
"name": "cdx:npm:package:path",
|
|
1566
|
+
"value": "node_modules/tr46"
|
|
1567
|
+
}
|
|
1568
|
+
]
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"type": "library",
|
|
1572
|
+
"name": "webidl-conversions",
|
|
1573
|
+
"version": "3.0.1",
|
|
1574
|
+
"bom-ref": "officeparser@7.8.0|webidl-conversions@3.0.1",
|
|
1575
|
+
"author": "Domenic Denicola",
|
|
1576
|
+
"description": "Implements the WebIDL algorithms for converting to and from JavaScript values",
|
|
1577
|
+
"licenses": [
|
|
1578
|
+
{
|
|
1579
|
+
"license": {
|
|
1580
|
+
"id": "BSD-2-Clause",
|
|
1581
|
+
"acknowledgement": "declared"
|
|
1582
|
+
}
|
|
1583
|
+
}
|
|
1584
|
+
],
|
|
1585
|
+
"purl": "pkg:npm/webidl-conversions@3.0.1",
|
|
1586
|
+
"externalReferences": [
|
|
1587
|
+
{
|
|
1588
|
+
"url": "git+https://github.com/jsdom/webidl-conversions.git",
|
|
1589
|
+
"type": "vcs",
|
|
1590
|
+
"comment": "as detected from PackageJson property \"repository.url\""
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"url": "https://github.com/jsdom/webidl-conversions#readme",
|
|
1594
|
+
"type": "website",
|
|
1595
|
+
"comment": "as detected from PackageJson property \"homepage\""
|
|
1596
|
+
},
|
|
1597
|
+
{
|
|
1598
|
+
"url": "https://github.com/jsdom/webidl-conversions/issues",
|
|
1599
|
+
"type": "issue-tracker",
|
|
1600
|
+
"comment": "as detected from PackageJson property \"bugs.url\""
|
|
1601
|
+
},
|
|
1602
|
+
{
|
|
1603
|
+
"url": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz",
|
|
1604
|
+
"type": "distribution",
|
|
1605
|
+
"hashes": [
|
|
1606
|
+
{
|
|
1607
|
+
"alg": "SHA-512",
|
|
1608
|
+
"content": "d89027df3f0047aae32bc4a6f28ad10b487f6dc97f0ea2fbb513dd199e08d428dd17e11a30b998c411f25ee28bf38f5eb9c3c586f068c4cb1f95f39bf24c5a79"
|
|
1609
|
+
}
|
|
1610
|
+
],
|
|
1611
|
+
"comment": "as detected from npm-ls property \"resolved\" and property \"integrity\""
|
|
1612
|
+
}
|
|
1613
|
+
],
|
|
1614
|
+
"properties": [
|
|
1615
|
+
{
|
|
1616
|
+
"name": "cdx:npm:package:path",
|
|
1617
|
+
"value": "node_modules/webidl-conversions"
|
|
1618
|
+
}
|
|
1619
|
+
]
|
|
1620
|
+
}
|
|
1621
|
+
],
|
|
1622
|
+
"dependencies": [
|
|
1623
|
+
{
|
|
1624
|
+
"ref": "officeparser@7.8.0",
|
|
1625
|
+
"dependsOn": [
|
|
1626
|
+
"officeparser@7.8.0|@xmldom/xmldom@0.9.10",
|
|
1627
|
+
"officeparser@7.8.0|fflate@0.8.3",
|
|
1628
|
+
"officeparser@7.8.0|file-type@22.0.1",
|
|
1629
|
+
"officeparser@7.8.0|pdfjs-dist@6.1.200",
|
|
1630
|
+
"officeparser@7.8.0|tesseract.js@7.0.0"
|
|
1631
|
+
]
|
|
1632
|
+
},
|
|
1633
|
+
{
|
|
1634
|
+
"ref": "officeparser@7.8.0|@xmldom/xmldom@0.9.10"
|
|
1635
|
+
},
|
|
1636
|
+
{
|
|
1637
|
+
"ref": "officeparser@7.8.0|fflate@0.8.3"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"ref": "officeparser@7.8.0|file-type@22.0.1",
|
|
1641
|
+
"dependsOn": [
|
|
1642
|
+
"officeparser@7.8.0|@tokenizer/inflate@0.4.1",
|
|
1643
|
+
"officeparser@7.8.0|strtok3@10.3.5",
|
|
1644
|
+
"officeparser@7.8.0|token-types@6.1.2",
|
|
1645
|
+
"officeparser@7.8.0|uint8array-extras@1.5.0"
|
|
1646
|
+
]
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
"ref": "officeparser@7.8.0|pdfjs-dist@6.1.200",
|
|
1650
|
+
"dependsOn": [
|
|
1651
|
+
"officeparser@7.8.0|@napi-rs/canvas@1.0.1"
|
|
1652
|
+
]
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"ref": "officeparser@7.8.0|tesseract.js@7.0.0",
|
|
1656
|
+
"dependsOn": [
|
|
1657
|
+
"officeparser@7.8.0|bmp-js@0.1.0",
|
|
1658
|
+
"officeparser@7.8.0|idb-keyval@6.2.2",
|
|
1659
|
+
"officeparser@7.8.0|is-url@1.2.4",
|
|
1660
|
+
"officeparser@7.8.0|node-fetch@2.7.0",
|
|
1661
|
+
"officeparser@7.8.0|opencollective-postinstall@2.0.3",
|
|
1662
|
+
"officeparser@7.8.0|regenerator-runtime@0.13.11",
|
|
1663
|
+
"officeparser@7.8.0|tesseract.js-core@7.0.0",
|
|
1664
|
+
"officeparser@7.8.0|wasm-feature-detect@1.8.0",
|
|
1665
|
+
"officeparser@7.8.0|zlibjs@0.3.1"
|
|
1666
|
+
]
|
|
1667
|
+
},
|
|
1668
|
+
{
|
|
1669
|
+
"ref": "officeparser@7.8.0|@tokenizer/inflate@0.4.1",
|
|
1670
|
+
"dependsOn": [
|
|
1671
|
+
"officeparser@7.8.0|debug@4.4.3",
|
|
1672
|
+
"officeparser@7.8.0|token-types@6.1.2"
|
|
1673
|
+
]
|
|
1674
|
+
},
|
|
1675
|
+
{
|
|
1676
|
+
"ref": "officeparser@7.8.0|strtok3@10.3.5",
|
|
1677
|
+
"dependsOn": [
|
|
1678
|
+
"officeparser@7.8.0|@tokenizer/token@0.3.0"
|
|
1679
|
+
]
|
|
1680
|
+
},
|
|
1681
|
+
{
|
|
1682
|
+
"ref": "officeparser@7.8.0|token-types@6.1.2",
|
|
1683
|
+
"dependsOn": [
|
|
1684
|
+
"officeparser@7.8.0|@borewit/text-codec@0.2.2",
|
|
1685
|
+
"officeparser@7.8.0|@tokenizer/token@0.3.0",
|
|
1686
|
+
"officeparser@7.8.0|ieee754@1.2.1"
|
|
1687
|
+
]
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
"ref": "officeparser@7.8.0|uint8array-extras@1.5.0"
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"ref": "officeparser@7.8.0|@napi-rs/canvas@1.0.1",
|
|
1694
|
+
"dependsOn": [
|
|
1695
|
+
"officeparser@7.8.0|@napi-rs/canvas-linux-x64-gnu@1.0.1"
|
|
1696
|
+
]
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"ref": "officeparser@7.8.0|bmp-js@0.1.0"
|
|
1700
|
+
},
|
|
1701
|
+
{
|
|
1702
|
+
"ref": "officeparser@7.8.0|idb-keyval@6.2.2"
|
|
1703
|
+
},
|
|
1704
|
+
{
|
|
1705
|
+
"ref": "officeparser@7.8.0|is-url@1.2.4"
|
|
1706
|
+
},
|
|
1707
|
+
{
|
|
1708
|
+
"ref": "officeparser@7.8.0|node-fetch@2.7.0",
|
|
1709
|
+
"dependsOn": [
|
|
1710
|
+
"officeparser@7.8.0|whatwg-url@5.0.0"
|
|
1711
|
+
]
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
"ref": "officeparser@7.8.0|opencollective-postinstall@2.0.3"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"ref": "officeparser@7.8.0|regenerator-runtime@0.13.11"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
"ref": "officeparser@7.8.0|tesseract.js-core@7.0.0"
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
"ref": "officeparser@7.8.0|wasm-feature-detect@1.8.0"
|
|
1724
|
+
},
|
|
1725
|
+
{
|
|
1726
|
+
"ref": "officeparser@7.8.0|zlibjs@0.3.1"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
"ref": "officeparser@7.8.0|debug@4.4.3",
|
|
1730
|
+
"dependsOn": [
|
|
1731
|
+
"officeparser@7.8.0|ms@2.1.3"
|
|
1732
|
+
]
|
|
1733
|
+
},
|
|
1734
|
+
{
|
|
1735
|
+
"ref": "officeparser@7.8.0|@tokenizer/token@0.3.0"
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
"ref": "officeparser@7.8.0|@borewit/text-codec@0.2.2"
|
|
1739
|
+
},
|
|
1740
|
+
{
|
|
1741
|
+
"ref": "officeparser@7.8.0|ieee754@1.2.1"
|
|
1742
|
+
},
|
|
1743
|
+
{
|
|
1744
|
+
"ref": "officeparser@7.8.0|@napi-rs/canvas-linux-x64-gnu@1.0.1"
|
|
1745
|
+
},
|
|
1746
|
+
{
|
|
1747
|
+
"ref": "officeparser@7.8.0|whatwg-url@5.0.0",
|
|
1748
|
+
"dependsOn": [
|
|
1749
|
+
"officeparser@7.8.0|tr46@0.0.3",
|
|
1750
|
+
"officeparser@7.8.0|webidl-conversions@3.0.1"
|
|
1751
|
+
]
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"ref": "officeparser@7.8.0|ms@2.1.3"
|
|
1755
|
+
},
|
|
1756
|
+
{
|
|
1757
|
+
"ref": "officeparser@7.8.0|tr46@0.0.3"
|
|
1758
|
+
},
|
|
1759
|
+
{
|
|
1760
|
+
"ref": "officeparser@7.8.0|webidl-conversions@3.0.1"
|
|
1761
|
+
}
|
|
1762
|
+
]
|
|
1763
|
+
}
|