-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
99 lines (99 loc) · 2.65 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
{
"name": "@kolirt/vue-web3-auth",
"version": "2.3.4",
"type": "module",
"description": "Web3 authentication for Vue3 apps based on WalletConnect Web3Modal v2",
"author": "kolirt",
"private": false,
"license": "MIT",
"keywords": [
"vue",
"vue3",
"vuejs",
"web3",
"web3vue",
"vueweb3",
"metamask",
"ethereum",
"wallet",
"walletconnect",
"dapp",
"web3modal",
"web3modalvue",
"crypto",
"web3auth",
"wagmi",
"viem",
"ethers"
],
"scripts": {
"build-lib": "run-p type-check build-only-lib",
"build-only-lib": "vite build -c vite.lib.config.ts",
"dev-demo": "vite serve -c vite.demo.config.ts",
"build-demo": "vite build -c vite.demo.config.ts",
"preview-demo": "vite preview -c vite.demo.config.ts",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-path .eslintignore",
"format": "prettier --write \"**/*.{ts,js,cjs,vue,json,prettierrc}\""
},
"pre-commit": [
"lint",
"type-check"
],
"files": [
"dist"
],
"typings": "./dist/vue-web3-auth.d.ts",
"main": "./dist/vue-web3-auth.umd.cjs",
"module": "./dist/vue-web3-auth.js",
"exports": {
".": {
"types": "./dist/vue-web3-auth.d.ts",
"import": "./dist/vue-web3-auth.js",
"require": "./dist/vue-web3-auth.umd.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/kolirt/vue-web3-auth"
},
"bugs": {
"url": "https://github.com/kolirt/vue-web3-auth/issues"
},
"homepage": "https://github.com/kolirt/vue-web3-auth#readme",
"peerDependencies": {
"vue": ">=3"
},
"dependencies": {
"@wagmi/core": "1.4.13",
"@web3modal/ethereum": "2.7.1",
"@web3modal/html": "2.7.1",
"js-event-bus": "1.1.1",
"viem": "1.21.4",
"wagmi": "1.4.13"
},
"devDependencies": {
"vue": "^3.3.2",
"bootstrap": "5.3.0",
"@rushstack/eslint-patch": "^1.2.0",
"@tsconfig/node18": "^2.0.1",
"@types/node": "^18.16.8",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.39.0",
"eslint-plugin-vue": "^9.11.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-attributes": "^1.0.0",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "~5.0.4",
"vite": "^4.3.5",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-eslint": "^1.8.1",
"vue-tsc": "^1.6.4"
}
}