-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.92 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
72
73
74
75
{
"name": "web3-vuejs",
"version": "0.1.5",
"description": "web3-vuejs forked web3-react, web3 vue vuejs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web3-vue/web3-vuejs.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"web3",
"vue",
"vuejs",
"web3-vuejs",
"web3-vue",
"web3-react"
],
"author": "Lei Wang",
"license": "MIT",
"funding": [
{
"type": "individual",
"url": "https://www.paypal.me/wlchn"
}
],
"bugs": {
"url": "https://github.com/web3-vue/web3-vuejs/issues"
},
"homepage": "https://github.com/web3-vue/web3-vuejs#readme",
"dependencies": {
"@ethersproject/address": "^5.7.0",
"@web3-react/types": "^8.0.20-beta.0"
},
"peerDependencies": {
"pinia": "^2.0.0",
"vue": ">=3.2.0"
},
"optionalDependencies": {
"@ethersproject/providers": "^5"
},
"devDependencies": {
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"ansi-regex": ">=6.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.3",
"pinia": "^2.0.0",
"ts-jest": "^28.0.8",
"typescript": "^4.6.4"
}
}