@shaclmate/cli 4.0.1 → 4.0.3
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 +2 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -12,12 +12,10 @@ Command line tool for generating [TypeScript](https://www.typescriptlang.org/) c
|
|
|
12
12
|
|
|
13
13
|
npx -y "@shaclmate/cli@latest" generate ts your-shapes.shaclmate.ttl >generated.ts
|
|
14
14
|
|
|
15
|
-
The generated code is serialized with minimal indentation and newlines. You will probably want to format it using a tool like [Biome](https://biomejs.dev/) or [prettier](https://prettier.io/).
|
|
16
|
-
|
|
17
15
|
## Runtime dependencies
|
|
18
16
|
|
|
19
|
-
The generated TypeScript code relies on various third-party libraries. The exact set of dependencies will depend on the code generated. See the [GitHub repository](https://github.com/
|
|
17
|
+
The generated TypeScript code relies on various third-party libraries. The exact set of dependencies will depend on the code generated. See the [GitHub repository](https://github.com/minorg/shaclmate) for examples and full documentation.
|
|
20
18
|
|
|
21
19
|
## License
|
|
22
20
|
|
|
23
|
-
[Apache 2.0](https://github.com/
|
|
21
|
+
[Apache 2.0](https://github.com/minorg/shaclmate/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"shaclmate": "dist/cli.js"
|
|
4
4
|
},
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@shaclmate/compiler": "4.0.
|
|
6
|
+
"@shaclmate/compiler": "4.0.3",
|
|
7
7
|
"@rdfjs/prefix-map": "~0.1.2",
|
|
8
8
|
"@rdfjs/types": "~2.0.1",
|
|
9
9
|
"@types/n3": "~1.26.0",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"license": "Apache-2.0",
|
|
37
37
|
"main": "./dist/index.js",
|
|
38
38
|
"name": "@shaclmate/cli",
|
|
39
|
-
"packageManager": "npm@
|
|
39
|
+
"packageManager": "npm@11.11.0",
|
|
40
40
|
"repository": {
|
|
41
41
|
"type": "git",
|
|
42
42
|
"url": "git+https://github.com/minorg/shaclmate.git"
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
},
|
|
52
52
|
"type": "module",
|
|
53
53
|
"types": "./dist/index.d.ts",
|
|
54
|
-
"version": "4.0.
|
|
54
|
+
"version": "4.0.3"
|
|
55
55
|
}
|