@twin.org/standards-ld-contexts 0.0.2-next.9 → 0.0.3-next.10
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/dist/es/index.js +4 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/ldContexts/dataspace-protocol.json +451 -0
- package/dist/es/ldContexts/dublin-core-dcmitype.json +19 -0
- package/dist/es/ldContexts/dublin-core-terms.json +226 -0
- package/dist/es/ldContexts/foaf.json +43 -0
- package/dist/es/ldContexts/gaia-x-v24.11.json +2397 -0
- package/dist/es/ldContexts/odrl-dataspace-protocol.json +96 -0
- package/dist/es/ldContexts/schema.org.json +9029 -0
- package/dist/es/ldContexts/un-cefact-vocab.json +12614 -0
- package/dist/es/ldContexts/w3c-activity-streams.json +379 -0
- package/dist/es/ldContexts/w3c-dcat.json +6607 -0
- package/dist/es/ldContexts/w3c-odrl.json +178 -0
- package/dist/es/ldContexts/w3c-rdf.json +38 -0
- package/dist/es/ldContexts/w3c-vc-data-model-v2.json +301 -0
- package/dist/es/ldContexts/w3id-jws-2020-v1.json +78 -0
- package/dist/es/ldContexts.js +84 -0
- package/dist/es/ldContexts.js.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/docs/changelog.md +138 -0
- package/package.json +20 -8
- package/dist/cjs/index.cjs +0 -217747
- package/dist/esm/index.mjs +0 -217743
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
// Copyright 2024 IOTA Stiftung.
|
|
2
|
+
// SPDX-License-Identifier: Apache-2.0.
|
|
3
|
+
import { GeneralError, Is } from "@twin.org/core";
|
|
4
|
+
import { JsonLdProcessor } from "@twin.org/data-json-ld";
|
|
5
|
+
import dataspaceProtocol from "./ldContexts/dataspace-protocol.json" with { type: "json" };
|
|
6
|
+
import dcmitype from "./ldContexts/dublin-core-dcmitype.json" with { type: "json" };
|
|
7
|
+
import dcTerms from "./ldContexts/dublin-core-terms.json" with { type: "json" };
|
|
8
|
+
import foaf from "./ldContexts/foaf.json" with { type: "json" };
|
|
9
|
+
import gaiaX2411 from "./ldContexts/gaia-x-v24.11.json" with { type: "json" };
|
|
10
|
+
import odrlDataspaceProtocol from "./ldContexts/odrl-dataspace-protocol.json" with { type: "json" };
|
|
11
|
+
import schemaOrg from "./ldContexts/schema.org.json" with { type: "json" };
|
|
12
|
+
import unCefact from "./ldContexts/un-cefact-vocab.json" with { type: "json" };
|
|
13
|
+
import w3cActivityStreams from "./ldContexts/w3c-activity-streams.json" with { type: "json" };
|
|
14
|
+
import w3cDcat from "./ldContexts/w3c-dcat.json" with { type: "json" };
|
|
15
|
+
import w3cOdrl from "./ldContexts/w3c-odrl.json" with { type: "json" };
|
|
16
|
+
import w3cRdf from "./ldContexts/w3c-rdf.json" with { type: "json" };
|
|
17
|
+
import w3cVc from "./ldContexts/w3c-vc-data-model-v2.json" with { type: "json" };
|
|
18
|
+
import w3IdJws from "./ldContexts/w3id-jws-2020-v1.json" with { type: "json" };
|
|
19
|
+
/**
|
|
20
|
+
* Map of all the ld contexts by their URL.
|
|
21
|
+
*/
|
|
22
|
+
export const LD_CONTEXTS = {
|
|
23
|
+
// schema.org
|
|
24
|
+
"https://schema.org": schemaOrg,
|
|
25
|
+
"http://schema.org": schemaOrg,
|
|
26
|
+
"https://schema.org/docs/jsonldcontext.jsonld": schemaOrg,
|
|
27
|
+
// Gaia-X
|
|
28
|
+
"https://w3id.org/gaia-x/2411": gaiaX2411,
|
|
29
|
+
"https://w3id.org/gaia-x/2411#": gaiaX2411,
|
|
30
|
+
"https://schema.twindev.org/gaia-x-loire/": gaiaX2411,
|
|
31
|
+
"https://schema.twindev.org/gaia-x-loire/types.jsonld": gaiaX2411,
|
|
32
|
+
// W3C DCAT
|
|
33
|
+
"http://www.w3.org/ns/dcat#": w3cDcat,
|
|
34
|
+
"https://www.w3.org/ns/dcat.jsonld": w3cDcat,
|
|
35
|
+
"http://www.w3.org/ns/dcat.jsonld": w3cDcat,
|
|
36
|
+
// W3C ODRL
|
|
37
|
+
"http://www.w3.org/ns/odrl.jsonld": w3cOdrl,
|
|
38
|
+
// W3C Activity Streams
|
|
39
|
+
"https://www.w3.org/ns/activitystreams#": w3cActivityStreams,
|
|
40
|
+
"https://www.w3.org/ns/activitystreams": w3cActivityStreams,
|
|
41
|
+
// W3C Credentials
|
|
42
|
+
"https://www.w3.org/ns/credentials/v2": w3cVc,
|
|
43
|
+
"https://w3id.org/security/suites/jws-2020/v1": w3IdJws,
|
|
44
|
+
// UN/CEFACT
|
|
45
|
+
"https://vocabulary.uncefact.org": unCefact,
|
|
46
|
+
"https://vocabulary.uncefact.org/unece-context.jsonld": unCefact,
|
|
47
|
+
"https://vocabulary.uncefact.org/unece-context-D23B.jsonld": unCefact,
|
|
48
|
+
// Dublin Core
|
|
49
|
+
"http://purl.org/dc/terms/": dcTerms,
|
|
50
|
+
"http://purl.org/dc/dcmitype/": dcmitype,
|
|
51
|
+
"https://schema.twindev.org/dublin-core/terms.jsonld": dcTerms,
|
|
52
|
+
"https://schema.twindev.org/dublin-core/dcmitype.jsonld": dcmitype,
|
|
53
|
+
// Data Space Protocol
|
|
54
|
+
"https://w3id.org/dspace/2024/1/context.json": dataspaceProtocol,
|
|
55
|
+
"https://w3id.org/dspace/2025/1/context.jsonld": dataspaceProtocol,
|
|
56
|
+
"https://w3id.org/dspace/2025/1/odrl-profile.jsonld": odrlDataspaceProtocol,
|
|
57
|
+
// Foaf
|
|
58
|
+
"https://schema.twindev.org/foaf/": foaf,
|
|
59
|
+
"https://schema.twindev.org/foaf/types.jsonld": foaf,
|
|
60
|
+
"http://xmlns.com/foaf/0.1/": foaf,
|
|
61
|
+
// W3C RDF
|
|
62
|
+
"https://schema.twindev.org/w3c-rdf/": w3cRdf,
|
|
63
|
+
"https://schema.twindev.org/w3c-rdf/types.jsonld": w3cRdf,
|
|
64
|
+
"http://www.w3.org/2000/01/rdf-schema#": w3cRdf
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Add all the contexts to the document cache.
|
|
68
|
+
*/
|
|
69
|
+
export async function addAllContextsToDocumentCache() {
|
|
70
|
+
for (const url in LD_CONTEXTS) {
|
|
71
|
+
await JsonLdProcessor.documentCacheAdd(url, LD_CONTEXTS[url]);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Add a context to the document cache.
|
|
76
|
+
* @param url The URL of the context to add to the cache.
|
|
77
|
+
*/
|
|
78
|
+
export async function addContextToDocumentCache(url) {
|
|
79
|
+
if (Is.empty(LD_CONTEXTS[url])) {
|
|
80
|
+
throw new GeneralError("ldContext", "missing", { url });
|
|
81
|
+
}
|
|
82
|
+
await JsonLdProcessor.documentCacheAdd(url, LD_CONTEXTS[url]);
|
|
83
|
+
}
|
|
84
|
+
//# sourceMappingURL=ldContexts.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ldContexts.js","sourceRoot":"","sources":["../../src/ldContexts.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\nimport { GeneralError, Is } from \"@twin.org/core\";\nimport { JsonLdProcessor } from \"@twin.org/data-json-ld\";\nimport dataspaceProtocol from \"./ldContexts/dataspace-protocol.json\" with { type: \"json\" };\nimport dcmitype from \"./ldContexts/dublin-core-dcmitype.json\" with { type: \"json\" };\nimport dcTerms from \"./ldContexts/dublin-core-terms.json\" with { type: \"json\" };\nimport foaf from \"./ldContexts/foaf.json\" with { type: \"json\" };\nimport gaiaX2411 from \"./ldContexts/gaia-x-v24.11.json\" with { type: \"json\" };\nimport odrlDataspaceProtocol from \"./ldContexts/odrl-dataspace-protocol.json\" with { type: \"json\" };\nimport schemaOrg from \"./ldContexts/schema.org.json\" with { type: \"json\" };\nimport unCefact from \"./ldContexts/un-cefact-vocab.json\" with { type: \"json\" };\nimport w3cActivityStreams from \"./ldContexts/w3c-activity-streams.json\" with { type: \"json\" };\nimport w3cDcat from \"./ldContexts/w3c-dcat.json\" with { type: \"json\" };\nimport w3cOdrl from \"./ldContexts/w3c-odrl.json\" with { type: \"json\" };\nimport w3cRdf from \"./ldContexts/w3c-rdf.json\" with { type: \"json\" };\nimport w3cVc from \"./ldContexts/w3c-vc-data-model-v2.json\" with { type: \"json\" };\nimport w3IdJws from \"./ldContexts/w3id-jws-2020-v1.json\" with { type: \"json\" };\n\n/**\n * Map of all the ld contexts by their URL.\n */\nexport const LD_CONTEXTS: { [id: string]: unknown } = {\n\t// schema.org\n\t\"https://schema.org\": schemaOrg,\n\t\"http://schema.org\": schemaOrg,\n\t\"https://schema.org/docs/jsonldcontext.jsonld\": schemaOrg,\n\n\t// Gaia-X\n\t\"https://w3id.org/gaia-x/2411\": gaiaX2411,\n\t\"https://w3id.org/gaia-x/2411#\": gaiaX2411,\n\n\t\"https://schema.twindev.org/gaia-x-loire/\": gaiaX2411,\n\t\"https://schema.twindev.org/gaia-x-loire/types.jsonld\": gaiaX2411,\n\n\t// W3C DCAT\n\t\"http://www.w3.org/ns/dcat#\": w3cDcat,\n\t\"https://www.w3.org/ns/dcat.jsonld\": w3cDcat,\n\t\"http://www.w3.org/ns/dcat.jsonld\": w3cDcat,\n\n\t// W3C ODRL\n\t\"http://www.w3.org/ns/odrl.jsonld\": w3cOdrl,\n\n\t// W3C Activity Streams\n\t\"https://www.w3.org/ns/activitystreams#\": w3cActivityStreams,\n\t\"https://www.w3.org/ns/activitystreams\": w3cActivityStreams,\n\n\t// W3C Credentials\n\t\"https://www.w3.org/ns/credentials/v2\": w3cVc,\n\t\"https://w3id.org/security/suites/jws-2020/v1\": w3IdJws,\n\n\t// UN/CEFACT\n\t\"https://vocabulary.uncefact.org\": unCefact,\n\t\"https://vocabulary.uncefact.org/unece-context.jsonld\": unCefact,\n\t\"https://vocabulary.uncefact.org/unece-context-D23B.jsonld\": unCefact,\n\n\t// Dublin Core\n\t\"http://purl.org/dc/terms/\": dcTerms,\n\t\"http://purl.org/dc/dcmitype/\": dcmitype,\n\t\"https://schema.twindev.org/dublin-core/terms.jsonld\": dcTerms,\n\t\"https://schema.twindev.org/dublin-core/dcmitype.jsonld\": dcmitype,\n\n\t// Data Space Protocol\n\t\"https://w3id.org/dspace/2024/1/context.json\": dataspaceProtocol,\n\t\"https://w3id.org/dspace/2025/1/context.jsonld\": dataspaceProtocol,\n\n\t\"https://w3id.org/dspace/2025/1/odrl-profile.jsonld\": odrlDataspaceProtocol,\n\n\t// Foaf\n\t\"https://schema.twindev.org/foaf/\": foaf,\n\t\"https://schema.twindev.org/foaf/types.jsonld\": foaf,\n\t\"http://xmlns.com/foaf/0.1/\": foaf,\n\n\t// W3C RDF\n\t\"https://schema.twindev.org/w3c-rdf/\": w3cRdf,\n\t\"https://schema.twindev.org/w3c-rdf/types.jsonld\": w3cRdf,\n\t\"http://www.w3.org/2000/01/rdf-schema#\": w3cRdf\n};\n\n/**\n * Add all the contexts to the document cache.\n */\nexport async function addAllContextsToDocumentCache(): Promise<void> {\n\tfor (const url in LD_CONTEXTS) {\n\t\tawait JsonLdProcessor.documentCacheAdd(url, LD_CONTEXTS[url]);\n\t}\n}\n\n/**\n * Add a context to the document cache.\n * @param url The URL of the context to add to the cache.\n */\nexport async function addContextToDocumentCache(url: string): Promise<void> {\n\tif (Is.empty(LD_CONTEXTS[url])) {\n\t\tthrow new GeneralError(\"ldContext\", \"missing\", { url });\n\t}\n\tawait JsonLdProcessor.documentCacheAdd(url, LD_CONTEXTS[url]);\n}\n"]}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./ldContexts";
|
|
1
|
+
export * from "./ldContexts.js";
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,143 @@
|
|
|
1
1
|
# @twin.org/standards-ld-contexts - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.9...standards-ld-contexts-v0.0.3-next.10) (2026-01-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.8...standards-ld-contexts-v0.0.3-next.9) (2026-01-09)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.7...standards-ld-contexts-v0.0.3-next.8) (2026-01-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add ds protocol catalog dataset ([#86](https://github.com/twinfoundation/standards/issues/86)) ([45600e6](https://github.com/twinfoundation/standards/commit/45600e6cba212d85e250cb12cbdcb712d8db0e52))
|
|
23
|
+
|
|
24
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.6...standards-ld-contexts-v0.0.3-next.7) (2026-01-06)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* refine local LD Contexts ([#84](https://github.com/twinfoundation/standards/issues/84)) ([785e359](https://github.com/twinfoundation/standards/commit/785e359ad6895fcb97197ca707915651fe3ae79c))
|
|
30
|
+
|
|
31
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.5...standards-ld-contexts-v0.0.3-next.6) (2025-12-03)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* generate unece types from JSON schema ([#71](https://github.com/twinfoundation/standards/issues/71)) ([5a596e7](https://github.com/twinfoundation/standards/commit/5a596e7a79c1a0b213560f5fb8b9ec5019d598d7))
|
|
37
|
+
|
|
38
|
+
## [0.0.3-next.5](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.4...standards-ld-contexts-v0.0.3-next.5) (2025-11-28)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Chores
|
|
42
|
+
|
|
43
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
44
|
+
|
|
45
|
+
## [0.0.3-next.4](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.3...standards-ld-contexts-v0.0.3-next.4) (2025-11-18)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Miscellaneous Chores
|
|
49
|
+
|
|
50
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.3](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.2...standards-ld-contexts-v0.0.3-next.3) (2025-11-18)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Features
|
|
56
|
+
|
|
57
|
+
* add w3c dcat standards package ([#68](https://github.com/twinfoundation/standards/issues/68)) ([85746c6](https://github.com/twinfoundation/standards/commit/85746c673464498a52e9c30ce498fd88b81a7434))
|
|
58
|
+
|
|
59
|
+
## [0.0.3-next.2](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.1...standards-ld-contexts-v0.0.3-next.2) (2025-11-11)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
## [0.0.3-next.1](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.3-next.0...standards-ld-contexts-v0.0.3-next.1) (2025-11-10)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
* add context id features ([#64](https://github.com/twinfoundation/standards/issues/64)) ([e68bb87](https://github.com/twinfoundation/standards/commit/e68bb87a215f3c3956cfd6400a5e1e2a16256085))
|
|
72
|
+
* add extra ld contexts needed ([#17](https://github.com/twinfoundation/standards/issues/17)) ([d9f1be2](https://github.com/twinfoundation/standards/commit/d9f1be2a852f776cb3a8f00bb4dd631da0fe848e))
|
|
73
|
+
* add ids contract negotiation types ([6225dde](https://github.com/twinfoundation/standards/commit/6225ddec9e845e3782e2944f30c771911855f165))
|
|
74
|
+
* add ld-contexts package ([c361354](https://github.com/twinfoundation/standards/commit/c3613542c3dab5c37cc3d9869ea72eef86bc1ba1))
|
|
75
|
+
* add validate-locales ([838389c](https://github.com/twinfoundation/standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
76
|
+
* eslint migration to flat config ([648c1a1](https://github.com/twinfoundation/standards/commit/648c1a1e69d99b6b0cf69358ec6bdeecdbe3a5ea))
|
|
77
|
+
* normalise type outputs ([0b3aed7](https://github.com/twinfoundation/standards/commit/0b3aed7df0802cd609423bbd7fda6bde601d3ceb))
|
|
78
|
+
* update framework core ([58c0c3d](https://github.com/twinfoundation/standards/commit/58c0c3dd6cea0e4c2393dc0e3e1eb33a6d06f617))
|
|
79
|
+
* update to latest JSON schema spec ([7a23930](https://github.com/twinfoundation/standards/commit/7a2393032d7f48bfb20d3a484f981fb6dd83a92c))
|
|
80
|
+
* use shared store mechanism ([#11](https://github.com/twinfoundation/standards/issues/11)) ([96fa237](https://github.com/twinfoundation/standards/commit/96fa23735f69c1fc7e3d0019b527634fa0a042d9))
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Bug Fixes
|
|
84
|
+
|
|
85
|
+
* add extra ld contexts associated to URLs. cache ([#21](https://github.com/twinfoundation/standards/issues/21)) ([05f7bba](https://github.com/twinfoundation/standards/commit/05f7bbafd0efbff445b878ccc2709975e50a7773))
|
|
86
|
+
* federated catalogue terms ld context last version copied ([#26](https://github.com/twinfoundation/standards/issues/26)) ([37f4ff0](https://github.com/twinfoundation/standards/commit/37f4ff00664e8b5efc7d24f1e2417061fd2bda56))
|
|
87
|
+
* gaia-x loire LD Context ([#62](https://github.com/twinfoundation/standards/issues/62)) ([072c4e7](https://github.com/twinfoundation/standards/commit/072c4e789158b3f989fa0fdd23df2532f7626dad))
|
|
88
|
+
* gaia-x pinned LD Context ([#59](https://github.com/twinfoundation/standards/issues/59)) ([7572616](https://github.com/twinfoundation/standards/commit/7572616a2e853e8f6f6234763e675edb96e54005))
|
|
89
|
+
* pin to 24.11 Gaia-X LD Context ([#58](https://github.com/twinfoundation/standards/issues/58)) ([4d3b9cc](https://github.com/twinfoundation/standards/commit/4d3b9cc365af276f5d4fc111a1744768746daa28))
|
|
90
|
+
|
|
91
|
+
## [0.0.2-next.16](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.15...standards-ld-contexts-v0.0.2-next.16) (2025-10-09)
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
### Bug Fixes
|
|
95
|
+
|
|
96
|
+
* gaia-x loire LD Context ([#62](https://github.com/twinfoundation/standards/issues/62)) ([072c4e7](https://github.com/twinfoundation/standards/commit/072c4e789158b3f989fa0fdd23df2532f7626dad))
|
|
97
|
+
|
|
98
|
+
## [0.0.2-next.15](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.14...standards-ld-contexts-v0.0.2-next.15) (2025-10-09)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
### Features
|
|
102
|
+
|
|
103
|
+
* add validate-locales ([838389c](https://github.com/twinfoundation/standards/commit/838389c1daf62ed42397d5758d267c3d1a37fa4d))
|
|
104
|
+
|
|
105
|
+
## [0.0.2-next.14](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.13...standards-ld-contexts-v0.0.2-next.14) (2025-10-02)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
### Bug Fixes
|
|
109
|
+
|
|
110
|
+
* gaia-x pinned LD Context ([#59](https://github.com/twinfoundation/standards/issues/59)) ([7572616](https://github.com/twinfoundation/standards/commit/7572616a2e853e8f6f6234763e675edb96e54005))
|
|
111
|
+
* pin to 24.11 Gaia-X LD Context ([#58](https://github.com/twinfoundation/standards/issues/58)) ([4d3b9cc](https://github.com/twinfoundation/standards/commit/4d3b9cc365af276f5d4fc111a1744768746daa28))
|
|
112
|
+
|
|
113
|
+
## [0.0.2-next.13](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.12...standards-ld-contexts-v0.0.2-next.13) (2025-09-22)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
### Miscellaneous Chores
|
|
117
|
+
|
|
118
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
119
|
+
|
|
120
|
+
## [0.0.2-next.12](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.11...standards-ld-contexts-v0.0.2-next.12) (2025-09-16)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
### Miscellaneous Chores
|
|
124
|
+
|
|
125
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
126
|
+
|
|
127
|
+
## [0.0.2-next.11](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.10...standards-ld-contexts-v0.0.2-next.11) (2025-09-16)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
### Miscellaneous Chores
|
|
131
|
+
|
|
132
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
133
|
+
|
|
134
|
+
## [0.0.2-next.10](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.9...standards-ld-contexts-v0.0.2-next.10) (2025-09-16)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
### Miscellaneous Chores
|
|
138
|
+
|
|
139
|
+
* **standards-ld-contexts:** Synchronize repo versions
|
|
140
|
+
|
|
3
141
|
## [0.0.2-next.9](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.8...standards-ld-contexts-v0.0.2-next.9) (2025-09-15)
|
|
4
142
|
|
|
5
143
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/standards-ld-contexts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-next.10",
|
|
4
4
|
"description": "Local copies of standard LD contexts which can be used for offline development",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,22 +17,34 @@
|
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
18
|
"@twin.org/data-json-ld": "next"
|
|
19
19
|
},
|
|
20
|
-
"main": "./dist/
|
|
21
|
-
"module": "./dist/esm/index.mjs",
|
|
20
|
+
"main": "./dist/es/index.js",
|
|
22
21
|
"types": "./dist/types/index.d.ts",
|
|
23
22
|
"exports": {
|
|
24
23
|
".": {
|
|
25
24
|
"types": "./dist/types/index.d.ts",
|
|
26
|
-
"
|
|
27
|
-
"
|
|
25
|
+
"import": "./dist/es/index.js",
|
|
26
|
+
"default": "./dist/es/index.js"
|
|
28
27
|
},
|
|
29
28
|
"./locales/*.json": "./locales/*.json"
|
|
30
29
|
},
|
|
31
30
|
"files": [
|
|
32
|
-
"dist/
|
|
33
|
-
"dist/esm",
|
|
31
|
+
"dist/es",
|
|
34
32
|
"dist/types",
|
|
35
33
|
"locales",
|
|
36
34
|
"docs"
|
|
37
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"keywords": [
|
|
37
|
+
"twin",
|
|
38
|
+
"trade",
|
|
39
|
+
"iota",
|
|
40
|
+
"framework",
|
|
41
|
+
"blockchain",
|
|
42
|
+
"standards",
|
|
43
|
+
"schema",
|
|
44
|
+
"specification"
|
|
45
|
+
],
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "git+https://github.com/twinfoundation/standards/issues"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://twindev.org"
|
|
38
50
|
}
|