@lde/sparql-importer 0.0.5 → 0.0.9

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.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +9 -6
package/README.md CHANGED
@@ -2,6 +2,5 @@
2
2
 
3
3
  Import RDF data dumps to a local SPARQL endpoint. This is useful when:
4
4
 
5
- * the dataset does not offer a SPARQL endpoint itself
6
- * or when it does but the endpoint is too slow or unreliable, particularly for more complex SPARQL queries.
7
-
5
+ - the dataset does not offer a SPARQL endpoint itself
6
+ - or when it does but the endpoint is too slow or unreliable, particularly for more complex SPARQL queries.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@lde/sparql-importer",
3
- "version": "0.0.5",
3
+ "version": "0.0.9",
4
+ "repository": {
5
+ "url": "https://github.com/ldengine/lde"
6
+ },
4
7
  "type": "module",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  "./package.json": "./package.json",
10
10
  ".": {
@@ -14,12 +14,15 @@
14
14
  "default": "./dist/index.js"
15
15
  }
16
16
  },
17
+ "main": "./dist/index.js",
18
+ "module": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
17
20
  "files": [
18
21
  "dist",
19
22
  "!**/*.tsbuildinfo"
20
23
  ],
21
24
  "dependencies": {
22
- "tslib": "^2.3.0",
23
- "@lde/dataset": "0.3.1"
25
+ "@lde/dataset": "0.4.2",
26
+ "tslib": "^2.3.0"
24
27
  }
25
28
  }