-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "@pontem/aptos-wallet-adapter",
"version": "0.10.1",
"description": "Wallet adapter with supporting Vue and React",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"keywords": [
"pontem",
"wallet adapter"
],
"author": "Dmitry Kuksenko <[email protected]>",
"repository": "https://github.com/pontem-network/wallet-adapter",
"bugs": {
"url": "https://github.com/pontem-network/wallet-adapter/issues"
},
"homepage": "https://github.com/pontem-network/wallet-adapter#readme",
"scripts": {
"build": "rm -rf dist; tsc -p tsconfig.json"
},
"license": "MIT",
"peerDependencies": {
"aptos": "^1.3.15"
},
"devDependencies": {
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"dependencies": {
"@fewcha/web3": "0.1.32",
"@blocto/sdk": "^0.3.1",
"@keystonehq/aptossnap-adapter": "0.2.7",
"@openblockhq/dappsdk": "^5.0.2",
"@types/jest": "27.5.1",
"@types/node": "18.8.1",
"aptos": "1.3.15",
"eventemitter3": "4.0.7",
"js-sha3": "0.8.0",
"msafe-wallet": "~2.1.3"
},
"optionalDependencies": {
"react": "^18.X.X || 17.X.X",
"react-dom": "^18.X.X || 17.X.X",
"@types/react": "^18.0.17",
"pinia": "2.0.22",
"vue": "3.2.40"
}
}