@kryptos_connect/mobile-sdk 0.0.0
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/LICENSE +22 -0
- package/README.md +268 -0
- package/dist/index.d.mts +72 -0
- package/dist/index.d.ts +72 -0
- package/dist/index.js +3834 -0
- package/dist/index.mjs +3860 -0
- package/package.json +115 -0
package/package.json
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kryptos_connect/mobile-sdk",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "Kryptos Connect Mobile SDK for React Native - Works with both Expo and React Native CLI. Simplifies Web3 finance integration for mobile apps.",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.mjs",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.mjs",
|
|
15
|
+
"require": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
23
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
24
|
+
"dev:yalc": "tsup src/index.ts --format cjs,esm --dts --watch --onSuccess \"npm run yalc:publish\"",
|
|
25
|
+
"yalc:publish": "yalc publish --push --no-sig",
|
|
26
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"kryptos",
|
|
31
|
+
"connect",
|
|
32
|
+
"react-native",
|
|
33
|
+
"expo",
|
|
34
|
+
"mobile",
|
|
35
|
+
"web3",
|
|
36
|
+
"web3-finance",
|
|
37
|
+
"blockchain",
|
|
38
|
+
"wallet",
|
|
39
|
+
"wallet-connect",
|
|
40
|
+
"defi",
|
|
41
|
+
"crypto",
|
|
42
|
+
"cryptocurrency",
|
|
43
|
+
"integration",
|
|
44
|
+
"finance",
|
|
45
|
+
"portfolio",
|
|
46
|
+
"portfolio-management",
|
|
47
|
+
"wealth-management",
|
|
48
|
+
"wealth-tracker",
|
|
49
|
+
"accounting",
|
|
50
|
+
"tax-reporting",
|
|
51
|
+
"tax-compliance",
|
|
52
|
+
"crypto-tax",
|
|
53
|
+
"web3-wallet",
|
|
54
|
+
"crypto-wallet",
|
|
55
|
+
"blockchain-integration",
|
|
56
|
+
"ios",
|
|
57
|
+
"android"
|
|
58
|
+
],
|
|
59
|
+
"author": "Kryptos",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": ">=16.8.0",
|
|
63
|
+
"react-native": ">=0.60.0",
|
|
64
|
+
"react-native-svg": ">=12.0.0",
|
|
65
|
+
"@react-native-async-storage/async-storage": "2.2.0",
|
|
66
|
+
"@react-native-community/netinfo": "11.4.1",
|
|
67
|
+
"@reown/appkit-ethers-react-native": "^2.0.1",
|
|
68
|
+
"@reown/appkit-react-native": "^2.0.1",
|
|
69
|
+
"@walletconnect/react-native-compat": "^2.23.0",
|
|
70
|
+
"babel-preset-expo": "^54.0.8",
|
|
71
|
+
"expo-application": "~7.0.8",
|
|
72
|
+
"react-native-get-random-values": "~1.11.0",
|
|
73
|
+
"viem": "^2.41.2"
|
|
74
|
+
},
|
|
75
|
+
"peerDependenciesMeta": {
|
|
76
|
+
"expo": {
|
|
77
|
+
"optional": true
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@types/react": "^18.2.0",
|
|
82
|
+
"@types/react-native": "^0.72.0",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
84
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
85
|
+
"eslint": "^8.0.0",
|
|
86
|
+
"eslint-plugin-react": "^7.33.0",
|
|
87
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
88
|
+
"react": "^18.2.0",
|
|
89
|
+
"react-native": "^0.74.0",
|
|
90
|
+
"react-native-safe-area-context": "~5.6.0",
|
|
91
|
+
"tsup": "^8.0.0",
|
|
92
|
+
"typescript": "^5.0.0"
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"axios": "^1.13.2",
|
|
96
|
+
"@react-native-async-storage/async-storage": "2.2.0",
|
|
97
|
+
"@react-native-community/netinfo": "11.4.1",
|
|
98
|
+
"@reown/appkit-ethers-react-native": "^2.0.1",
|
|
99
|
+
"@reown/appkit-react-native": "^2.0.1",
|
|
100
|
+
"@walletconnect/react-native-compat": "^2.23.0",
|
|
101
|
+
"babel-preset-expo": "^54.0.8",
|
|
102
|
+
"expo-application": "~7.0.8",
|
|
103
|
+
"react-native-get-random-values": "~1.11.0",
|
|
104
|
+
"react-native-svg": "15.12.1",
|
|
105
|
+
"viem": "^2.41.2"
|
|
106
|
+
},
|
|
107
|
+
"repository": {
|
|
108
|
+
"type": "git",
|
|
109
|
+
"url": "git+https://github.com/Kryptoskatt/kryptos-connect-mobile-package.git"
|
|
110
|
+
},
|
|
111
|
+
"bugs": {
|
|
112
|
+
"url": "https://github.com/Kryptoskatt/kryptos-connect-mobile-package/issues"
|
|
113
|
+
},
|
|
114
|
+
"homepage": "https://github.com/Kryptoskatt/kryptos-connect-mobile-package#readme"
|
|
115
|
+
}
|