@txnlab/use-wallet-solid 3.0.0-beta.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,110 @@
1
+ {
2
+ "name": "@txnlab/use-wallet-solid",
3
+ "version": "3.0.0-beta.10",
4
+ "description": "Solid.js library for integrating Algorand wallets into decentralized applications",
5
+ "author": "Doug Richar <drichar@gmail.com>",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/txnlab/use-wallet.git",
10
+ "directory": "packages/use-wallet-solid"
11
+ },
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "exports": {
16
+ "solid": {
17
+ "development": "./dist/dev.jsx",
18
+ "import": "./dist/index.jsx"
19
+ },
20
+ "development": {
21
+ "import": {
22
+ "types": "./dist/index.d.ts",
23
+ "default": "./dist/dev.js"
24
+ },
25
+ "require": {
26
+ "types": "./dist/index.d.cts",
27
+ "default": "./dist/dev.cjs"
28
+ }
29
+ },
30
+ "import": {
31
+ "types": "./dist/index.d.ts",
32
+ "default": "./dist/index.js"
33
+ },
34
+ "require": {
35
+ "types": "./dist/index.d.cts",
36
+ "default": "./dist/index.cjs"
37
+ }
38
+ },
39
+ "types": "./dist/index.d.ts",
40
+ "keywords": [
41
+ "algorand",
42
+ "wallet",
43
+ "walletconnect",
44
+ "pera",
45
+ "defly",
46
+ "exodus",
47
+ "algosdk",
48
+ "algokit",
49
+ "kmd",
50
+ "solid.js"
51
+ ],
52
+ "files": [
53
+ "dist"
54
+ ],
55
+ "dependencies": {
56
+ "@tanstack/solid-store": "0.4.1",
57
+ "@txnlab/use-wallet": "3.0.0-beta.10"
58
+ },
59
+ "devDependencies": {
60
+ "@solidjs/testing-library": "^0.8.5",
61
+ "algosdk": "2.7.0",
62
+ "solid-js": "^1.8.11",
63
+ "tsup": "^8.0.0",
64
+ "tsup-preset-solid": "^2.2.0",
65
+ "typescript": "^5.2.2"
66
+ },
67
+ "peerDependencies": {
68
+ "@blockshake/defly-connect": "^1.1.6",
69
+ "@magic-ext/algorand": "^23.0.2",
70
+ "@perawallet/connect-beta": "^2.0.11",
71
+ "@walletconnect/modal": "^2.6.2",
72
+ "@walletconnect/sign-client": "^2.10.2",
73
+ "algosdk": "^2.7.0",
74
+ "lute-connect": "^1.2.0",
75
+ "magic-sdk": "^28.0.3"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "@blockshake/defly-connect": {
79
+ "optional": true
80
+ },
81
+ "@magic-ext/algorand": {
82
+ "optional": true
83
+ },
84
+ "@perawallet/connect-beta": {
85
+ "optional": true
86
+ },
87
+ "@walletconnect/modal": {
88
+ "optional": true
89
+ },
90
+ "@walletconnect/sign-client": {
91
+ "optional": true
92
+ },
93
+ "lute-connect": {
94
+ "optional": true
95
+ },
96
+ "magic-sdk": {
97
+ "optional": true
98
+ }
99
+ },
100
+ "browser": {},
101
+ "typesVersions": {},
102
+ "scripts": {
103
+ "build": "tsup",
104
+ "start": "tsup src/index.ts --watch",
105
+ "test": "vitest",
106
+ "test:watch": "vitest --watch",
107
+ "lint": "eslint -c '../../.eslintrc.json' '**/*.{js,ts}'",
108
+ "typecheck": "tsc --noEmit"
109
+ }
110
+ }