-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "solana-wallets-vue",
"version": "0.6.1",
"description": "Solana wallet integration for Vue 3",
"author": "Loris Leiva",
"license": "MIT",
"files": [
"dist",
"src",
"styles.css",
"postcss.config.js"
],
"main": "./dist/solana-wallets-vue.umd.js",
"module": "./dist/solana-wallets-vue.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/solana-wallets-vue.mjs",
"require": "./dist/solana-wallets-vue.umd.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./styles.css",
"./postcss.config.js": "./postcss.config.js"
},
"scripts": {
"dev": "vite -c vite.demo.config.ts",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"demo": "vite build -c vite.demo.config.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@solana-mobile/wallet-adapter-mobile": "^2.1.4",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-standard-wallet-adapter-base": "^1.1.4",
"@vueuse/core": "^12.5.0",
"@wallet-standard/app": "^1.1.0",
"@wallet-standard/base": "^1.1.0"
},
"devDependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.98.0",
"@types/node": "^22.12.0",
"@types/node-fetch": "^2.6.12",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.61.0",
"vue": "^3.2.25"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}