pareto-core-refiner 0.1.0

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,4 @@
1
+ /**
2
+ * these functions coming from core-internals should be exposed for deserializer development
3
+ */
4
+ export { build_list, build_dictionary, create_iterator, dictionary_literal, list_literal, } from "pareto-core-internals";
package/dist/index.js ADDED
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.list_literal = exports.dictionary_literal = exports.create_iterator = exports.build_dictionary = exports.build_list = void 0;
4
+ /**
5
+ * these functions coming from core-internals should be exposed for deserializer development
6
+ */
7
+ var pareto_core_internals_1 = require("pareto-core-internals");
8
+ // build_text, probably not needed
9
+ Object.defineProperty(exports, "build_list", { enumerable: true, get: function () { return pareto_core_internals_1.build_list; } });
10
+ Object.defineProperty(exports, "build_dictionary", { enumerable: true, get: function () { return pareto_core_internals_1.build_dictionary; } });
11
+ Object.defineProperty(exports, "create_iterator", { enumerable: true, get: function () { return pareto_core_internals_1.create_iterator; } });
12
+ Object.defineProperty(exports, "dictionary_literal", { enumerable: true, get: function () { return pareto_core_internals_1.dictionary_literal; } });
13
+ Object.defineProperty(exports, "list_literal", { enumerable: true, get: function () { return pareto_core_internals_1.list_literal; } });
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUE7O0dBRUc7QUFDSCwrREFPOEI7QUFOMUIsa0NBQWtDO0FBQ2xDLG1IQUFBLFVBQVUsT0FBQTtBQUNWLHlIQUFBLGdCQUFnQixPQUFBO0FBQ2hCLHdIQUFBLGVBQWUsT0FBQTtBQUNmLDJIQUFBLGtCQUFrQixPQUFBO0FBQ2xCLHFIQUFBLFlBQVksT0FBQSJ9
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "pareto-core-refiner",
3
+ "version": "0.1.0",
4
+ "license": "ISC",
5
+ "description": "the exupery core package for developing refiner algorithms",
6
+ "author": "Corno",
7
+ "keywords": [
8
+ "exupery",
9
+ "refiner algorithm development"
10
+ ],
11
+ "homepage": "https://github.com/corno/pareto-core-refiner#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/corno/pareto-core-refiner/issues"
14
+ },
15
+ "main": "./dist/index.js",
16
+ "types": "dist/index.d.ts",
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "dependencies": {
21
+ "pareto-core-internals": "^0.24.4"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/corno/pareto-core-refiner.git"
26
+ }
27
+ }