@learncard/ceramic-plugin 1.1.20 → 1.1.21
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/{ceramic-plugin.cjs.development.js → ceramic-plugin.cjs.development.cjs} +2 -2
- package/dist/{ceramic-plugin.cjs.production.min.js → ceramic-plugin.cjs.production.min.cjs} +2 -2
- package/dist/{ceramic-plugin.cjs.production.min.js.map → ceramic-plugin.cjs.production.min.cjs.map} +1 -1
- package/dist/ceramic-plugin.esm.js +1 -1
- package/dist/{index.js → index.cjs} +2 -2
- package/dist/index.d.cts +6 -0
- package/package.json +19 -6
- /package/dist/{ceramic-plugin.cjs.development.js.map → ceramic-plugin.cjs.development.cjs.map} +0 -0
|
@@ -37057,7 +37057,7 @@ var require_src3 = __commonJS({
|
|
|
37057
37057
|
});
|
|
37058
37058
|
|
|
37059
37059
|
// src/ceramic.ts
|
|
37060
|
-
var import_lodash6 = __toESM(require_lodash());
|
|
37060
|
+
var import_lodash6 = __toESM(require_lodash(), 1);
|
|
37061
37061
|
|
|
37062
37062
|
// ../../../node_modules/.pnpm/did-resolver@3.2.2/node_modules/did-resolver/lib/resolver.module.js
|
|
37063
37063
|
function _catch(body, recover) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
if (process.env.NODE_ENV === 'production') {
|
|
4
|
-
module.exports = require('./ceramic-plugin.cjs.production.min.
|
|
4
|
+
module.exports = require('./ceramic-plugin.cjs.production.min.cjs');
|
|
5
5
|
} else {
|
|
6
|
-
module.exports = require('./ceramic-plugin.cjs.development.
|
|
6
|
+
module.exports = require('./ceramic-plugin.cjs.development.cjs');
|
|
7
7
|
}
|
package/dist/index.d.cts
ADDED
package/package.json
CHANGED
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@learncard/ceramic-plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"description": "",
|
|
5
|
-
"
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
6
7
|
"module": "./dist/ceramic-plugin.esm.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"default": "./dist/ceramic-plugin.esm.js"
|
|
13
|
+
},
|
|
14
|
+
"require": {
|
|
15
|
+
"types": "./dist/index.d.cts",
|
|
16
|
+
"default": "./dist/index.cjs"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
7
20
|
"files": [
|
|
8
21
|
"dist"
|
|
9
22
|
],
|
|
@@ -28,7 +41,7 @@
|
|
|
28
41
|
"jest": "^29.3.0",
|
|
29
42
|
"shx": "^0.3.4",
|
|
30
43
|
"ts-jest": "^29.0.3",
|
|
31
|
-
"@learncard/didkit-plugin": "1.9.
|
|
44
|
+
"@learncard/didkit-plugin": "1.9.1"
|
|
32
45
|
},
|
|
33
46
|
"types": "./dist/index.d.ts",
|
|
34
47
|
"dependencies": {
|
|
@@ -42,12 +55,12 @@
|
|
|
42
55
|
"key-did-provider-ed25519": "^2.0.0",
|
|
43
56
|
"key-did-resolver": "2.3.0",
|
|
44
57
|
"lodash": "^4.17.21",
|
|
45
|
-
"@learncard/
|
|
46
|
-
"@learncard/
|
|
58
|
+
"@learncard/types": "5.17.1",
|
|
59
|
+
"@learncard/core": "9.4.21"
|
|
47
60
|
},
|
|
48
61
|
"sideEffects": false,
|
|
49
62
|
"scripts": {
|
|
50
|
-
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.
|
|
63
|
+
"build": "node ./scripts/build.mjs && shx cp ./scripts/mixedEntypoint.js ./dist/index.cjs && tsc --p tsconfig.json && shx cp ./dist/index.d.ts ./dist/index.d.cts",
|
|
51
64
|
"test": "jest --passWithNoTests",
|
|
52
65
|
"test:watch": "jest --watch",
|
|
53
66
|
"test:coverage": "jest --silent --ci --coverage --coverageReporters=\"text\" --coverageReporters=\"text-summary\""
|
/package/dist/{ceramic-plugin.cjs.development.js.map → ceramic-plugin.cjs.development.cjs.map}
RENAMED
|
File without changes
|