@cann4n/wallet-keypair 0.2.0 → 0.2.2

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { KeypairWalletProvider } from "./keypairWalletProvider";
1
+ import { KeypairWalletProvider } from "./keypairWalletProvider.js";
2
2
  export { KeypairWalletProvider };
3
3
  export function keypairWallet(config) {
4
4
  return new KeypairWalletProvider(config);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cann4n/wallet-keypair",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Ed25519 keypair wallet provider for AgentKit Stellar",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "dist"
18
18
  ],
19
19
  "dependencies": {
20
- "@cann4n/core": "^0.2.0"
20
+ "@cann4n/core": "^0.2.2"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@stellar/stellar-sdk": "^12.3.0"
@@ -37,7 +37,7 @@
37
37
  "directory": "packages/wallet-keypair"
38
38
  },
39
39
  "scripts": {
40
- "build": "tsc",
40
+ "build": "tsc && node ../../scripts/fix-esm-imports.mjs dist",
41
41
  "test": "vitest run",
42
42
  "lint": "eslint src/",
43
43
  "typecheck": "tsc --noEmit",