-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.21 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@meshsdk/wallet",
"version": "2.0.0-beta.7",
"description": "Wallets - https://meshjs.dev/apis/wallets",
"main": "./dist/index.cjs",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"build": "tsup",
"build:demo": "tsup demo/src/main.ts --format esm --outDir demo/dist --clean",
"dev:demo": "tsup demo/src/main.ts --format esm --outDir demo/dist --watch",
"preview:demo": "npx serve demo -p 5173",
"build:docs": "typedoc src/index.ts --json ../../apps/docs/src/data/mesh-wallets.json",
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
"dev": "tsup src/index.ts --format esm,cjs --watch --dts",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"pack": "npm pack --pack-destination=./dist",
"test": "jest"
},
"devDependencies": {
"@meshsdk/common": "1.9.0-beta.100",
"@meshsdk/provider": "1.9.0-beta.99",
"@types/jest": "^29.5.12",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"patch-package": "^8.0.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typedoc": "^0.26.3",
"typescript": "^5.3.3",
"jest": "^29.7.0",
"@types/jest": "^29.5.12",
"ts-node": "^10.9.2",
"ts-jest": "^29.1.4",
"dotenv": "^16.4.5",
"@meshsdk/provider": "1.9.0-beta.99",
"@meshsdk/common": "1.9.0-beta.100"
},
"dependencies": {
"@cardano-sdk/core": "0.46.11",
"@cardano-sdk/crypto": "0.4.4",
"@cardano-sdk/util": "0.17.1",
"@harmoniclabs/cbor": "^1.6.6",
"@simplewebauthn/browser": "^13.0.0",
"@types/base32-encoding": "^1.0.2",
"@types/bn.js": "^5.1.5",
"base32-encoding": "^1.0.0",
"bip32": "^5.0.0",
"json-bigint": "^1.0.0",
"tiny-secp256k1": "^2.2.4"
},
"prettier": "./prettier.config.js",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"cardano",
"ada",
"web3",
"blockchain",
"sdk"
]
}