forked from vu3th/vue-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "vue-dapp",
"version": "0.7.2",
"description": "Vue 3 library for building Dapps on Ethereum",
"repository": "https://github.com/chnejohnson/vue-dapp",
"bugs": {
"url": "https://github.com/chnejohnson/vue-dapp/issues"
},
"homepage": "https://github.com/chnejohnson/vue-dapp#readme",
"author": "Johnson Chen <https://twitter.com/chnejohnson>",
"license": "MIT",
"main": "dist/index.common.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && rollup -c",
"dev:dist": "rollup -w -c rollup.config.js",
"dev": "vite",
"build:demo": "vite build",
"serve:demo": "vite preview",
"lint": "eslint './src/**/*.{js,ts}'",
"prettier-check": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"format": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "vitest --environment jsdom",
"test": "yarn run test:types && yarn run test:unit",
"dev:docs": "vitepress dev docs",
"build:docs": "vitepress build docs",
"serve:docs": "vitepress serve docs",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md"
],
"dependencies": {},
"peerDependencies": {
"@coinbase/wallet-sdk": ">=3.1.0",
"@gnosis.pm/safe-apps-provider": ">=0.15.1",
"@gnosis.pm/safe-apps-sdk": ">=7.8.0",
"@walletconnect/web3-provider": ">=1.7.8",
"ethers": ">=5.6.8",
"vue": ">=3.2.0"
},
"peerDependenciesMeta": {
"@coinbase/wallet-sdk": {
"optional": true
},
"@walletconnect/web3-provider": {
"optional": true
},
"@gnosis.pm/safe-apps-provider": {
"optional": true
},
"@gnosis.pm/safe-apps-sdk": {
"optional": true
}
},
"devDependencies": {
"@coinbase/wallet-sdk": "^3.1.0",
"@gnosis.pm/safe-apps-provider": "^0.15.1",
"@gnosis.pm/safe-apps-sdk": "^7.8.0",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-vue": "3.2.0",
"@vue/compiler-sfc": "^3.2.36",
"@vue/test-utils": "^2.2.6",
"@vuedx/typecheck": "^0.7.5",
"@vuedx/typescript-plugin-vue": "^0.7.5",
"@walletconnect/web3-provider": "^1.7.8",
"autoprefixer": "^10.4.13",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jsdom": "^20.0.3",
"lint-staged": "^12.4.2",
"node-stdlib-browser": "^1.2.0",
"pascalcase": "^2.0.0",
"postcss": "^8.4.20",
"prettier": "^2.6.2",
"rollup": "^2.74.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"semantic-release": "^19.0.5",
"tailwindcss": "^3.2.4",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vite": "3.2.4",
"vitepress": "^1.0.0-alpha.29",
"vitest": "^0.25.5"
},
"lint-staged": {
"**/*.{js,ts,json,scss,css,vue}": [
"prettier --write"
]
},
"keywords": [
"vue",
"vue3",
"dapp",
"web3",
"ethereum",
"hook",
"composable"
]
}