generated from web3/web3.js-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.2 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
{
"name": "web3-plugin-wallet-workspace",
"private": true,
"version": "0.1.0",
"description": "Web3.js plugin to add support for wallet-related RPC methods",
"homepage": "https://github.com/web3/web3-plugin-wallet-rpc#readme",
"bugs": {
"url": "https://github.com/web3/web3-plugin-wallet-rpc/issues"
},
"contributors": [
"ChainSafe <info@chainsafe.io>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/web3/web3-plugin-wallet-rpc.git"
},
"workspaces": [
"packages/example-react-app",
"packages/web3-plugin-wallet-rpc"
],
"packageManager": "yarn@1.22.15",
"scripts": {
"build": "cd packages/web3-plugin-wallet-rpc && yarn build",
"build:docs": "cd packages/web3-plugin-wallet-rpc && yarn build:docs",
"test": "cd packages/web3-plugin-wallet-rpc && yarn test",
"lint": "yarn lint:plugin && yarn lint:example",
"lint:plugin": "cd packages/web3-plugin-wallet-rpc && yarn lint",
"lint:example": "cd packages/example-react-app && yarn lint",
"format": "prettier --write .",
"start:example": "yarn build && cd packages/example-react-app && yarn start"
},
"devDependencies": {
"prettier": "^3.3.3"
}
}