@iamgame/wallet-sdk 0.1.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/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@iamgame/wallet-sdk",
3
+ "version": "0.1.0",
4
+ "description": "IAMGame Wallet browser SDK — Telegram & Solana wallet auth, balances, server-side signing, and key export. Drop-in React provider for game frontends.",
5
+ "license": "MIT",
6
+ "homepage": "https://wallet.iamgame.com",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/iamgame777/iamgame-mono.git",
10
+ "directory": "iamgame-wallet/sdk"
11
+ },
12
+ "keywords": [
13
+ "iamgame",
14
+ "wallet",
15
+ "solana",
16
+ "embedded-wallet",
17
+ "telegram",
18
+ "web3",
19
+ "react",
20
+ "siws"
21
+ ],
22
+ "type": "module",
23
+ "main": "dist/index.cjs",
24
+ "module": "dist/index.js",
25
+ "types": "dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "import": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
31
+ },
32
+ "require": {
33
+ "types": "./dist/index.d.cts",
34
+ "default": "./dist/index.cjs"
35
+ }
36
+ }
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "README.md"
41
+ ],
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "sideEffects": false,
46
+ "scripts": {
47
+ "build": "tsup && node ../scripts/debrand-dts.mjs",
48
+ "watch": "tsup --watch",
49
+ "prepublishOnly": "npm run build"
50
+ },
51
+ "peerDependencies": {
52
+ "react": ">=18",
53
+ "react-dom": ">=18"
54
+ },
55
+ "devDependencies": {
56
+ "@solven/sdk-client": "*",
57
+ "@solven/types": "*",
58
+ "@iamgame/wallet-types": "*",
59
+ "@types/react": "^19",
60
+ "@types/react-dom": "^19",
61
+ "tsup": "^8.3.5",
62
+ "typescript": "^5"
63
+ }
64
+ }