forked from TxnLab/use-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.5 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
{
"name": "@txnlab/use-wallet-solid",
"version": "4.0.0",
"description": "Solid.js 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-solid"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"solid": {
"development": "./dist/dev.jsx",
"import": "./dist/index.jsx"
},
"development": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/dev.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/dev.cjs"
}
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"start": "tsup src/index.tsx --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",
"solid.js"
],
"files": [
"dist"
],
"dependencies": {
"@tanstack/solid-store": "0.7.0",
"@txnlab/use-wallet": "workspace:*"
},
"devDependencies": {
"@solidjs/testing-library": "0.8.10",
"algosdk": "3.2.0",
"solid-js": "1.9.5",
"tsup": "8.4.0",
"tsup-preset-solid": "2.2.0",
"typescript": "5.8.2"
},
"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.5.1",
"magic-sdk": "^28.21.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
}
},
"browser": {},
"typesVersions": {}
}