forked from cardano-foundation/cardano-connect-with-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 989 Bytes
/
package.json
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
{
"name": "@cardano-foundation/cardano-connect-with-wallet-core",
"version": "0.2.4",
"description": "Framework-independent CIP-0030 wrapper functions that allow a smooth build of wallet interaction components",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "webpack && tsc --emitDeclarationOnly",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"CIP-30",
"CIP-08",
"Cardano",
"wallet",
"connect"
],
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"bech32": "^2.0.0",
"buffer": "^6.0.3",
"cborg": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2"
}
}