@shaclmate/shacl-ast 3.0.3 → 3.0.4

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.
@@ -1,4 +1,6 @@
1
- import { purify, type rdfjs, rdfjsResource } from "@shaclmate/runtime";
1
+ import type * as rdfjs from "@rdfjs/types";
2
+ import * as purify from "purify-ts";
3
+ import * as rdfjsResource from "rdfjs-resource";
2
4
  import { PropertyPath } from "./PropertyPath.js";
3
5
  export declare namespace $RdfVocabularies {
4
6
  namespace rdf {
package/dist/generated.js CHANGED
@@ -1,4 +1,8 @@
1
- import { dataFactory, datasetFactory, purify, rdfjsResource, } from "@shaclmate/runtime";
1
+ import { StoreFactory as _DatasetFactory } from "n3";
2
+ const datasetFactory = new _DatasetFactory();
3
+ import { DataFactory as dataFactory } from "n3";
4
+ import * as purify from "purify-ts";
5
+ import * as rdfjsResource from "rdfjs-resource";
2
6
  import { PropertyPath } from "./PropertyPath.js";
3
7
  export var $RdfVocabularies;
4
8
  (function ($RdfVocabularies) {
package/package.json CHANGED
@@ -1,18 +1,26 @@
1
1
  {
2
2
  "dependencies": {
3
- "@shaclmate/runtime": "3.0.3",
4
3
  "@rdfjs/term-map": "^2.0.2",
5
4
  "@rdfjs/term-set": "^2.0.3",
6
5
  "@rdfjs/types": "^1.1.0",
7
6
  "@tpluscode/rdf-ns-builders": "^4.3.0",
7
+ "@types/n3": "^1.26.0",
8
8
  "@types/rdfjs__term-map": "^2.0.10",
9
9
  "@types/rdfjs__term-set": "^2.0.9",
10
+ "n3": "^1.26.0",
10
11
  "purify-ts": "^2.1.0",
11
12
  "rdfjs-resource": "1.0.24"
12
13
  },
13
14
  "devDependencies": {
14
- "@types/n3": "^1.26.0",
15
- "n3": "^1.26.0"
15
+ "@biomejs/biome": "1.9.4",
16
+ "@tsconfig/node18": "^18.2.4",
17
+ "@tsconfig/strictest": "^2.0.5",
18
+ "@types/node": "^22",
19
+ "depcheck": "^1.4.7",
20
+ "rimraf": "^6.0.1",
21
+ "typescript": "5.8.2",
22
+ "vitest": "^3.2.4",
23
+ "@vitest/coverage-v8": "^3.2.4"
16
24
  },
17
25
  "files": [
18
26
  "dist/*.d.ts",
@@ -33,6 +41,7 @@
33
41
  "check:write": "biome check --write",
34
42
  "check:write:unsafe": "biome check --write --unsafe",
35
43
  "clean": "rimraf dist",
44
+ "depcheck": "depcheck .",
36
45
  "dev": "tsc -w --preserveWatchOutput",
37
46
  "dev:noEmit": "tsc --noEmit -w --preserveWatchOutput",
38
47
  "link-dependencies": "npm link rdfjs-resource",
@@ -43,5 +52,5 @@
43
52
  },
44
53
  "type": "module",
45
54
  "types": "./dist/index.d.ts",
46
- "version": "3.0.3"
55
+ "version": "3.0.4"
47
56
  }