@meshsdk/wallet 1.6.0-alpha.21 → 1.6.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.
package/package.json CHANGED
@@ -1,36 +1,54 @@
1
1
  {
2
2
  "name": "@meshsdk/wallet",
3
- "version": "1.6.0-alpha.21",
3
+ "version": "1.6.2",
4
4
  "description": "",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
5
+ "main": "./dist/index.cjs",
6
+ "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
+ "type": "module",
8
9
  "exports": {
9
10
  ".": {
10
- "import": "./dist/index.mjs",
11
- "require": "./dist/index.js"
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs",
13
+ "types": "./dist/index.d.ts"
12
14
  }
13
15
  },
16
+ "files": [
17
+ "dist/**"
18
+ ],
14
19
  "scripts": {
15
- "build:mesh": "tsup src/index.ts --format esm,cjs --dts",
20
+ "build:mesh": "tsup src/index.ts --format esm,cjs --dts --minify",
16
21
  "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
17
22
  "lint": "eslint",
18
23
  "clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
19
- "test": "jest --verbose",
24
+ "test": "jest",
20
25
  "format": "prettier --check . --ignore-path ../../.gitignore",
21
26
  "build:docs": "typedoc src/index.ts --json ../../apps/docs/src/data/mesh-wallets.json"
22
27
  },
23
28
  "devDependencies": {
24
- "@meshsdk/typescript-config": "workspace:*",
29
+ "@meshsdk/typescript-config": "*",
25
30
  "eslint": "^8.57.0",
26
31
  "tsup": "^8.0.2",
27
- "typescript": "^5.3.3",
28
- "typedoc": "^0.26.3"
32
+ "typedoc": "^0.26.3",
33
+ "typescript": "^5.3.3"
29
34
  },
30
35
  "dependencies": {
31
- "@meshsdk/common": "workspace:*",
32
- "@meshsdk/core-cst": "workspace:*",
33
- "@meshsdk/transaction": "workspace:*"
36
+ "@meshsdk/common": "*",
37
+ "@meshsdk/core-cst": "*",
38
+ "@meshsdk/transaction": "*",
39
+ "@nufi/dapp-client-cardano": "^0.3.1",
40
+ "@nufi/dapp-client-core": "^0.3.1"
34
41
  },
35
- "prettier": "@meshsdk/prettier-config"
36
- }
42
+ "prettier": "@meshsdk/prettier-config",
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "license": "Apache-2.0",
47
+ "keywords": [
48
+ "cardano",
49
+ "ada",
50
+ "web3",
51
+ "blockchain",
52
+ "sdk"
53
+ ]
54
+ }
@@ -1,11 +0,0 @@
1
-
2
- > @meshsdk/wallet@1.6.0-alpha.21 build:docs
3
- > typedoc src/index.ts --json ../../apps/docs/src/data/mesh-wallets.json
4
-
5
- [warning] The signature BrowserWallet.getCollateral has an @param with name "limit", which was not used
6
- [warning] The signature MeshWallet.signData has an @param with name "address", which was not used
7
- [warning] WalletInstance, defined in ./src/types/index.ts, is referenced by BrowserWallet._walletInstance but not included in the documentation
8
- [warning] GetAddressType, defined in ./src/types/index.ts, is referenced by AppWallet.getCollateralUnspentOutput.addressType but not included in the documentation
9
- [info] JSON written to /Users/jingles/Documents/GitHub/mesh-v2/apps/docs/src/data/mesh-wallets.json
10
- [warning] Found 0 errors and 4 warnings
11
- ⠙
@@ -1,19 +0,0 @@
1
-
2
- > @meshsdk/wallet@1.6.0-alpha.21 build:mesh
3
- > tsup src/index.ts --format esm,cjs --dts
4
-
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.2.3
8
- CLI Target: es2020
9
- ESM Build start
10
- CJS Build start
11
- CJS dist/index.js 44.55 KB
12
- CJS ⚡️ Build success in 20ms
13
- ESM dist/index.mjs 42.95 KB
14
- ESM ⚡️ Build success in 21ms
15
- DTS Build start
16
- DTS ⚡️ Build success in 936ms
17
- DTS dist/index.d.mts 20.79 KB
18
- DTS dist/index.d.ts 20.79 KB
19
- ⠙
@@ -1,19 +0,0 @@
1
-
2
- > @meshsdk/wallet@0.0.1 build
3
- > tsup src/index.ts --format esm,cjs --dts
4
-
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.2.3
8
- CLI Target: es2020
9
- ESM Build start
10
- CJS Build start
11
- ESM dist/index.mjs 42.95 KB
12
- ESM ⚡️ Build success in 22ms
13
- CJS dist/index.js 44.55 KB
14
- CJS ⚡️ Build success in 22ms
15
- DTS Build start
16
- DTS ⚡️ Build success in 875ms
17
- DTS dist/index.d.mts 20.79 KB
18
- DTS dist/index.d.ts 20.79 KB
19
- ⠙