-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
57 lines (57 loc) · 1.93 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@concordium/wallet-connectors",
"version": "0.6.1",
"description": "Utility interface for dApps to interact with wallets without depending on the underlying protocol and implementations for Concordium Browser Wallet and Wallet Connect v2.",
"author": "Concordium Software",
"license": "Apache-2.0",
"browser": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"./dist",
"./src"
],
"repository": {
"type": "git",
"url": "https://github.com/Concordium/concordium-node-sdk-js/tree/main/packages/wallet-connectors"
},
"scripts": {
"lint": "eslint . --cache --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "yarn lint --fix",
"prettier": "prettier . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore --ignore-path .gitignore",
"fmt": "yarn prettier --write",
"fmt-check": "yarn prettier --check",
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@concordium/browser-wallet-api-helpers": "^3.0.0",
"@protobuf-ts/grpcweb-transport": "^2.9.4",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/modal-core": "^2.6.2",
"@walletconnect/sign-client": "^2.1.4",
"buffer": "^6.0.3"
},
"peerDependencies": {
"@concordium/web-sdk": ">= 7",
"@walletconnect/types": "^2.13.1"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.13",
"@walletconnect/types": "^2.13.1",
"eslint": "8",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}