@xyo-network/payloadset-plugins 2.99.4 → 2.99.6
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/browser/{indexBrowser.js → indexBrowser.mjs} +1 -1
- package/dist/{node/indexNode.js → neutral/indexNode.mjs} +1 -1
- package/dist/{neutral/indexNode.js → node/indexNode.mjs} +1 -1
- package/package.json +25 -25
- /package/dist/browser/{indexBrowser.js.map → indexBrowser.mjs.map} +0 -0
- /package/dist/neutral/{indexNode.js.map → indexNode.mjs.map} +0 -0
- /package/dist/node/{indexNode.js.map → indexNode.mjs.map} +0 -0
package/package.json
CHANGED
|
@@ -10,28 +10,28 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xyo-network/api-call-witness": "^2.99.
|
|
14
|
-
"@xyo-network/blockchain-plugins": "^2.99.
|
|
15
|
-
"@xyo-network/crypto-plugins": "^2.99.
|
|
16
|
-
"@xyo-network/domain-plugin": "^2.99.
|
|
17
|
-
"@xyo-network/elevation-plugin": "^2.99.
|
|
18
|
-
"@xyo-network/file-plugins": "^2.99.
|
|
19
|
-
"@xyo-network/id-plugin": "^2.99.
|
|
20
|
-
"@xyo-network/image-thumbnail-plugin": "^2.99.
|
|
21
|
-
"@xyo-network/location-certainty-plugin": "^2.99.
|
|
22
|
-
"@xyo-network/location-plugin": "^2.99.
|
|
23
|
-
"@xyo-network/module-instance-plugin": "^2.99.
|
|
24
|
-
"@xyo-network/payloadset-plugin": "^2.
|
|
25
|
-
"@xyo-network/prometheus-node-plugin": "^2.99.
|
|
26
|
-
"@xyo-network/schema-plugin": "^2.99.
|
|
27
|
-
"@xyo-network/system-plugins": "^2.99.
|
|
28
|
-
"@xyo-network/url-plugin": "^2.99.
|
|
29
|
-
"@xyo-network/url-safety-plugin": "^2.99.
|
|
13
|
+
"@xyo-network/api-call-witness": "^2.99.6",
|
|
14
|
+
"@xyo-network/blockchain-plugins": "^2.99.6",
|
|
15
|
+
"@xyo-network/crypto-plugins": "^2.99.6",
|
|
16
|
+
"@xyo-network/domain-plugin": "^2.99.6",
|
|
17
|
+
"@xyo-network/elevation-plugin": "^2.99.6",
|
|
18
|
+
"@xyo-network/file-plugins": "^2.99.6",
|
|
19
|
+
"@xyo-network/id-plugin": "^2.99.6",
|
|
20
|
+
"@xyo-network/image-thumbnail-plugin": "^2.99.6",
|
|
21
|
+
"@xyo-network/location-certainty-plugin": "^2.99.6",
|
|
22
|
+
"@xyo-network/location-plugin": "^2.99.6",
|
|
23
|
+
"@xyo-network/module-instance-plugin": "^2.99.6",
|
|
24
|
+
"@xyo-network/payloadset-plugin": "^2.111.3",
|
|
25
|
+
"@xyo-network/prometheus-node-plugin": "^2.99.6",
|
|
26
|
+
"@xyo-network/schema-plugin": "^2.99.6",
|
|
27
|
+
"@xyo-network/system-plugins": "^2.99.6",
|
|
28
|
+
"@xyo-network/url-plugin": "^2.99.6",
|
|
29
|
+
"@xyo-network/url-safety-plugin": "^2.99.6"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
33
|
-
"@xylabs/tsconfig": "^3.
|
|
34
|
-
"typescript": "^5.5.
|
|
32
|
+
"@xylabs/ts-scripts-yarn3": "^3.15.14",
|
|
33
|
+
"@xylabs/tsconfig": "^3.15.14",
|
|
34
|
+
"typescript": "^5.5.4"
|
|
35
35
|
},
|
|
36
36
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
37
37
|
"exports": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"import": {
|
|
45
45
|
"types": "./dist/browser/indexBrowser.d.mts",
|
|
46
|
-
"default": "./dist/browser/indexBrowser.
|
|
46
|
+
"default": "./dist/browser/indexBrowser.mjs"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"node": {
|
|
@@ -53,15 +53,15 @@
|
|
|
53
53
|
},
|
|
54
54
|
"import": {
|
|
55
55
|
"types": "./dist/node/indexNode.d.mts",
|
|
56
|
-
"default": "./dist/node/indexNode.
|
|
56
|
+
"default": "./dist/node/indexNode.mjs"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"./package.json": "./package.json"
|
|
61
61
|
},
|
|
62
62
|
"main": "dist/node/indexNode.cjs",
|
|
63
|
-
"module": "dist/node/indexNode.
|
|
64
|
-
"types": "dist/node/indexNode.d.
|
|
63
|
+
"module": "dist/node/indexNode.mjs",
|
|
64
|
+
"types": "dist/node/indexNode.d.ts",
|
|
65
65
|
"homepage": "https://xyo.network",
|
|
66
66
|
"license": "LGPL-3.0-only",
|
|
67
67
|
"publishConfig": {
|
|
@@ -72,6 +72,6 @@
|
|
|
72
72
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
73
73
|
},
|
|
74
74
|
"sideEffects": false,
|
|
75
|
-
"version": "2.99.
|
|
75
|
+
"version": "2.99.6",
|
|
76
76
|
"type": "module"
|
|
77
77
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|