@ton/appkit-react 0.0.1-alpha.1

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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/index.js +1 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @ton/appkit-react
2
+
3
+ > TON AppKit React — React bindings for TON AppKit
4
+
5
+ This package is under active development. Stay tuned for updates.
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ npm install @ton/appkit-react
11
+ ```
12
+
13
+ ## License
14
+
15
+ MIT
package/index.js ADDED
@@ -0,0 +1 @@
1
+ // @ton/appkit-react — placeholder, package under development
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@ton/appkit-react",
3
+ "version": "0.0.1-alpha.1",
4
+ "description": "TON AppKit React — React bindings for TON AppKit",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "keywords": ["ton", "appkit", "react", "blockchain", "sdk"],
8
+ "author": "TON Studio",
9
+ "license": "MIT",
10
+ "peerDependencies": {
11
+ "react": ">=18.0.0"
12
+ }
13
+ }