This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.24 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
70
71
{
"name": "@decent-org/wallet-provider",
"version": "0.1.15",
"description": "Using ![Web3 Modal](https://web3modal.com) to connect Ethereum or EVM supported wallets.",
"source": "src/index.ts",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.module.js",
"typings": "dist/index.d.ts",
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"directories": {
"dist": "dist"
},
"files": [
"dist"
],
"keywords": [
"blockchain",
"web3",
"wallet",
"provider",
"react",
"typescript",
"web3modal"
],
"scripts": {
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"clean": "rm -rf dist",
"clean:node_modules": "rm -rf node_modules && cd sandbox && rm -rf node_modules",
"clean:all": "npm run clean && npm run clean:node_modules",
"package:install": "npm run clean:all && npm install && cd sandbox && npm install",
"build": "microbundle --jsx React.createElement && cp package.json README.md ./dist",
"create:link": "cd ./dist && npm link && cd ..",
"set:link": "cd sandbox && npm link @decent-org/wallet-provider",
"build:link": "npm run clean && npm run lint:fix && npm run build && npm run create:link && npm run set:link",
"build:watch": "microbundle --watch --jsx React.createElement",
"start": "cd sandbox && npm run start",
"build:start": "npm run package:install && npm run build:link && npm run start"
},
"author": "Decent DAO",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^16.14.28",
"@types/react-dom": "^16.9.16",
"eslint": "^7.11.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"microbundle": "^0.15.0",
"prettier": "^2.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@walletconnect/ethereum-provider": "^1.7.8",
"ethers": "^5.6.9",
"web3modal": "^1.9.8"
}
}