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