ldkit 0.0.4 → 0.4.2
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 +5 -1
- package/esm/library/encoder.js +3 -3
- package/esm/library/engine.js +1 -1
- package/esm/mod.js +1 -1
- package/esm/namespaces.js +1 -0
- package/esm/rdf.js +1 -0
- package/esm/sparql.js +1 -0
- package/namespaces/package.json +1 -0
- package/package.json +18 -17
- package/rdf/package.json +1 -0
- package/script/library/encoder.js +2 -2
- package/script/library/engine.js +2 -2
- package/script/mod.js +2 -2
- package/script/namespaces.js +17 -0
- package/script/rdf.js +17 -0
- package/script/sparql.js +17 -0
- package/sparql/package.json +1 -0
- package/types/mod.d.ts +2 -2
- package/types/namespaces.d.ts +1 -0
- package/types/rdf.d.ts +1 -0
- package/types/sparql.d.ts +1 -0
- package/esm/_dnt.shims.js +0 -70
- package/esm/library/comunica/bundle.js +0 -82389
- package/esm/library/comunica/mod.js +0 -1
- package/script/_dnt.shims.js +0 -80
- package/script/library/comunica/bundle.js +0 -82415
- package/script/library/comunica/mod.js +0 -5
- package/types/_dnt.shims.d.ts +0 -13
- package/types/library/comunica/bundle.d.ts +0 -2
- package/types/library/comunica/mod.d.ts +0 -3
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.QueryEngine = void 0;
|
|
4
|
-
var bundle_js_1 = require("./bundle.js");
|
|
5
|
-
Object.defineProperty(exports, "QueryEngine", { enumerable: true, get: function () { return bundle_js_1.QueryEngine; } });
|
package/types/_dnt.shims.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { Deno } from "@deno/shim-deno";
|
|
2
|
-
export { Deno } from "@deno/shim-deno";
|
|
3
|
-
import { fetch, File, FormData, Headers, Request, Response } from "undici";
|
|
4
|
-
export { fetch, File, FormData, Headers, Request, Response, type BodyInit, type HeadersInit, type RequestInit, type ResponseInit } from "undici";
|
|
5
|
-
export declare const dntGlobalThis: Omit<typeof globalThis, "Deno" | "fetch" | "File" | "FormData" | "Headers" | "Request" | "Response"> & {
|
|
6
|
-
Deno: typeof Deno;
|
|
7
|
-
fetch: typeof fetch;
|
|
8
|
-
File: typeof File;
|
|
9
|
-
FormData: typeof FormData;
|
|
10
|
-
Headers: typeof Headers;
|
|
11
|
-
Request: typeof Request;
|
|
12
|
-
Response: typeof Response;
|
|
13
|
-
};
|