@ckb-ccc/nip07 0.0.16-alpha.2 → 0.0.16-alpha.4

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @ckb-ccc/nip07
2
2
 
3
+ ## 0.0.16-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`f21d7e4`](https://github.com/ckb-ecofund/ccc/commit/f21d7e4cf422edab4a836ef6d678b620594fef8d)]:
8
+ - @ckb-ccc/core@0.1.0-alpha.4
9
+
10
+ ## 0.0.16-alpha.3
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`a3d5359`](https://github.com/ckb-ecofund/ccc/commit/a3d53595f6dd11f2f59cdf0086b3d7ce558a2fdd)]:
15
+ - @ckb-ccc/core@0.0.16-alpha.3
16
+
3
17
  ## 0.0.16-alpha.2
4
18
 
5
19
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.getNip07Signer = void 0;
3
+ exports.getNip07Signer = getNip07Signer;
4
4
  const signer_js_1 = require("./signer.js");
5
5
  /**
6
6
  * @public
@@ -12,4 +12,3 @@ function getNip07Signer(client) {
12
12
  }
13
13
  return new signer_js_1.Signer(client, windowRef.nostr);
14
14
  }
15
- exports.getNip07Signer = getNip07Signer;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckb-ccc/nip07",
3
- "version": "0.0.16-alpha.2",
3
+ "version": "0.0.16-alpha.4",
4
4
  "description": "CCC - CKBer's Codebase. Common Chains Connector's support for NIP07",
5
5
  "author": "Hanssen0 <hanssen0@hanssen0.com>",
6
6
  "license": "MIT",
@@ -38,11 +38,11 @@
38
38
  "access": "public"
39
39
  },
40
40
  "dependencies": {
41
- "@ckb-ccc/core": "0.0.16-alpha.2"
41
+ "@ckb-ccc/core": "0.1.0-alpha.4"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "rimraf ./dist && rimraf ./dist.commonjs && tsc && tsc --project tsconfig.commonjs.json && copyfiles -u 2 misc/basedirs/**/* .",
45
- "lint": "eslint",
46
- "format": "prettier --write . && eslint --fix"
45
+ "lint": "eslint ./src",
46
+ "format": "prettier --write . && eslint --fix ./src"
47
47
  }
48
48
  }