-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
84 lines (84 loc) · 1.9 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
{
"name": "@txnlab/use-wallet-vue",
"version": "4.0.0",
"description": "Vue library for integrating Algorand wallets into decentralized applications",
"author": "Doug Richar <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/txnlab/use-wallet.git",
"directory": "packages/use-wallet-vue"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"start": "tsup src/index.ts --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint -c \"../../.eslintrc.json\" \"**/*.{js,ts}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"algorand",
"wallet",
"walletconnect",
"pera",
"defly",
"exodus",
"algosdk",
"algokit",
"kmd",
"vue"
],
"files": [
"dist"
],
"dependencies": {
"@tanstack/vue-store": "0.7.0",
"@txnlab/use-wallet": "workspace:*"
},
"devDependencies": {
"algosdk": "3.0.0",
"tsup": "8.3.5",
"typescript": "5.8.2",
"vue": "3.5.13"
},
"peerDependencies": {
"@blockshake/defly-connect": "^1.2.1",
"@magic-ext/algorand": "^23.20.0",
"@perawallet/connect": "^1.4.1",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/sign-client": "^2.17.3",
"algosdk": "^3.0.0",
"lute-connect": "^1.4.1",
"magic-sdk": "^28.21.0",
"vue": "^3.0.0"
},
"peerDependenciesMeta": {
"@blockshake/defly-connect": {
"optional": true
},
"@magic-ext/algorand": {
"optional": true
},
"@perawallet/connect": {
"optional": true
},
"@walletconnect/modal": {
"optional": true
},
"@walletconnect/sign-client": {
"optional": true
},
"lute-connect": {
"optional": true
},
"magic-sdk": {
"optional": true
}
}
}