forked from lorisleiva/solana-wallets-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.86 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
{
"name": "@solana/wallet-adapter-vue",
"type": "module",
"version": "0.1.1",
"packageManager": "[email protected]",
"description": "Solana Wallet Adapter for Vue",
"author": "Loris Leiva",
"contributors": [
{
"name": "Vladyslav Korniienko",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": "https://github.com/mfactory-labs/solana-wallet-adapter-vue",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/wallet-adapter-vue.js",
"require": "./dist/wallet-adapter-vue.cjs"
},
"./styles.css": "./styles.css"
},
"main": "./dist/wallet-adapter-vue.js",
"module": "./dist/wallet-adapter-vue.cjs",
"files": [
"dist",
"src",
"styles.css"
],
"typings": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"demo": "pnpm -F demo run",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"peerDependencies": {
"@solana/web3.js": "^1.95.5",
"vue": "*"
},
"dependencies": {
"@solana-mobile/wallet-adapter-mobile": "^2.1.4",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-standard-wallet-adapter-base": "^1.1.2",
"@vueuse/core": "^11.3.0",
"@wallet-standard/app": "^1.1.0",
"@wallet-standard/base": "^1.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.10.0",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^5.2.1",
"eslint-plugin-format": "^0.1.2",
"typescript": "5.6.3",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react",
"react-native",
"react-dom"
]
},
"overrides": {
"bs58": ">=5.0.0",
"elliptic@<6.6.0": ">=6.6.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
}
}
}