@twin.org/ts-to-jsonld-context 0.0.3-next.6

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.
@@ -0,0 +1,34 @@
1
+ {
2
+ "error": {
3
+ "commands": {
4
+ "ts-to-jsonld-context": {
5
+ "configFailed": "Configuration failed to load.",
6
+ "noJsonLdProps": "No JSON-LD properties found for property \"{propertyName}\"."
7
+ }
8
+ }
9
+ },
10
+ "commands": {
11
+ "ts-to-jsonld-context": {
12
+ "options": {
13
+ "config": {
14
+ "param": "'<'config'>'",
15
+ "description": "Path to the JSON configuration file."
16
+ },
17
+ "output-file": {
18
+ "param": "'<'output-file'>'",
19
+ "description": "The file to write the JSON-LD Context to."
20
+ }
21
+ },
22
+ "progress": {
23
+ "loadingConfigJson": "Loading Config JSON"
24
+ },
25
+ "labels": {
26
+ "configJson": "Config JSON",
27
+ "outputFile": "Output File",
28
+ "writingOutputFile": "Writing Output File",
29
+ "model": "Model",
30
+ "property": "Property"
31
+ }
32
+ }
33
+ }
34
+ }
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "@twin.org/ts-to-jsonld-context",
3
+ "version": "0.0.3-next.6",
4
+ "description": "Tool to convert TypeScript definitions to JSON-LD contexts",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/twinfoundation/tools.git",
8
+ "directory": "apps/ts-to-jsonld-context"
9
+ },
10
+ "author": "martyn.janes@iota.org",
11
+ "license": "Apache-2.0",
12
+ "type": "module",
13
+ "engines": {
14
+ "node": ">=20.0.0"
15
+ },
16
+ "dependencies": {
17
+ "@twin.org/cli-core": "next",
18
+ "@twin.org/core": "next",
19
+ "@twin.org/nameof": "next",
20
+ "@twin.org/tools-core": "0.0.3-next.6",
21
+ "commander": "14.0.2",
22
+ "glob": "11.0.3",
23
+ "typescript": "5.9.3"
24
+ },
25
+ "main": "./dist/es/index.js",
26
+ "types": "./dist/types/index.d.ts",
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/types/index.d.ts",
30
+ "import": "./dist/es/index.js",
31
+ "default": "./dist/es/index.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "bin",
36
+ "dist/es",
37
+ "dist/locales",
38
+ "dist/types",
39
+ "locales",
40
+ "docs"
41
+ ],
42
+ "bin": {
43
+ "ts-to-jsonld-context": "bin/index.js"
44
+ },
45
+ "keywords": [
46
+ "twin",
47
+ "trade",
48
+ "iota",
49
+ "framework",
50
+ "blockchain",
51
+ "tools"
52
+ ],
53
+ "bugs": {
54
+ "url": "git+https://github.com/twinfoundation/tools/issues"
55
+ },
56
+ "homepage": "https://twindev.org"
57
+ }