-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@openblockhq/dappsdk",
"version": "5.0.7",
"description": "A simple, powerful SDK to interact with the OpenBlock",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"start": "webpack-dev-server",
"build": "NODE_ENV=prod webpack",
"test": "yarn lint"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"keywords": [
"openblock",
"dapp",
"sdk",
"ethereum",
"aptos",
"starcoin",
"evm",
"javascript",
"web3",
"frontend",
"trust-wallet",
"walletconnect"
],
"files": [
"dist/",
"README.md",
"src/"
],
"author": "OpenBlock",
"license": "MIT",
"homepage": "https://openblock.com",
"devDependencies": {
"@babel/core": "^7",
"@babel/plugin-proposal-class-properties": "^7",
"@babel/preset-env": "^7",
"babel-loader": "^8",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.31.10",
"html-webpack-plugin": "^4.5.2",
"prettier": "^2.3.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@mysten/wallet-standard": "^0.2.8",
"mitt": "^3.0.0",
"tronweb": "^5.0.0"
}
}