@pod-os/core 0.21.1-rc.650bacd.0 → 0.21.1-rc.d5dc0f3.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.
- package/dist/index.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +14 -6
package/dist/index.js
CHANGED
|
@@ -4041,7 +4041,7 @@ var WebIdProfile = class extends Thing {
|
|
|
4041
4041
|
};
|
|
4042
4042
|
|
|
4043
4043
|
// src/search/SearchIndex.ts
|
|
4044
|
-
var import_lunr = __toESM(require_lunr());
|
|
4044
|
+
var import_lunr = __toESM(require_lunr(), 1);
|
|
4045
4045
|
var SearchIndex = class {
|
|
4046
4046
|
constructor(labelIndexes) {
|
|
4047
4047
|
this.labelIndexes = labelIndexes;
|
|
@@ -25745,7 +25745,7 @@ function listKnownTerms() {
|
|
|
25745
25745
|
}
|
|
25746
25746
|
|
|
25747
25747
|
// src/uri/UriService.ts
|
|
25748
|
-
var import_slugify = __toESM(require_slugify());
|
|
25748
|
+
var import_slugify = __toESM(require_slugify(), 1);
|
|
25749
25749
|
var UriService = class {
|
|
25750
25750
|
// We expect to use the store for calculating the uris for things
|
|
25751
25751
|
// e.g. looking up locations in type index
|
package/lib/index.js
CHANGED
|
@@ -37012,7 +37012,7 @@ _:patch
|
|
|
37012
37012
|
};
|
|
37013
37013
|
|
|
37014
37014
|
// src/search/SearchIndex.ts
|
|
37015
|
-
var import_lunr = __toESM(require_lunr());
|
|
37015
|
+
var import_lunr = __toESM(require_lunr(), 1);
|
|
37016
37016
|
var SearchIndex = class {
|
|
37017
37017
|
constructor(labelIndexes) {
|
|
37018
37018
|
this.labelIndexes = labelIndexes;
|
|
@@ -58730,7 +58730,7 @@ _:patch
|
|
|
58730
58730
|
}
|
|
58731
58731
|
|
|
58732
58732
|
// src/uri/UriService.ts
|
|
58733
|
-
var import_slugify = __toESM(require_slugify());
|
|
58733
|
+
var import_slugify = __toESM(require_slugify(), 1);
|
|
58734
58734
|
var UriService = class {
|
|
58735
58735
|
// We expect to use the store for calculating the uris for things
|
|
58736
58736
|
// e.g. looking up locations in type index
|
package/package.json
CHANGED
|
@@ -1,13 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pod-os/core",
|
|
3
|
-
"
|
|
3
|
+
"description": "Core module of PodOS",
|
|
4
|
+
"version": "0.21.1-rc.d5dc0f3.0",
|
|
5
|
+
"type": "module",
|
|
4
6
|
"main": "./dist/index.js",
|
|
5
7
|
"types": "./types/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./types/index.d.ts",
|
|
12
|
+
"require": "./lib/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
6
15
|
"files": [
|
|
7
16
|
"lib/",
|
|
8
17
|
"dist/",
|
|
9
18
|
"types/"
|
|
10
19
|
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=18.0.0"
|
|
22
|
+
},
|
|
11
23
|
"scripts": {
|
|
12
24
|
"test": "jest",
|
|
13
25
|
"test:watch": "jest --watch",
|
|
@@ -60,9 +72,6 @@
|
|
|
60
72
|
"slugify": "^1.6.6",
|
|
61
73
|
"url": "^0.11.4"
|
|
62
74
|
},
|
|
63
|
-
"directories": {
|
|
64
|
-
"lib": "lib"
|
|
65
|
-
},
|
|
66
75
|
"repository": {
|
|
67
76
|
"type": "git",
|
|
68
77
|
"url": "git+https://github.com/pod-os/pod-os.git"
|
|
@@ -70,6 +79,5 @@
|
|
|
70
79
|
"bugs": {
|
|
71
80
|
"url": "https://github.com/pod-os/pod-os/issues"
|
|
72
81
|
},
|
|
73
|
-
"homepage": "https://github.com/pod-os/pod-os#readme"
|
|
74
|
-
"description": ""
|
|
82
|
+
"homepage": "https://github.com/pod-os/pod-os#readme"
|
|
75
83
|
}
|