@tgrv/cli 1.0.0 → 1.0.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 (2) hide show
  1. package/README.md +31 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # âĒŠ Gravity Runtime CLI
2
+
3
+ The standalone high-performance JavaScript runtime of the TitanPl Framework.
4
+
5
+ Gravity (`tgrv`) allows you to execute JavaScript scripts natively with direct access to TitanPl's powerful native extensions and deterministic async engine.
6
+
7
+ ## 🚀 Usage
8
+
9
+ ```bash
10
+ # Initialize a new project
11
+ tgrv init
12
+
13
+ # Run your script
14
+ tgrv app.js
15
+ ```
16
+
17
+ ## 📖 Documentation
18
+
19
+ For comprehensive documentation on available runtime APIs (File System, Network, Database, Tasks, etc.), please visit:
20
+
21
+ 👉 **[Gravity Runtime API Reference](https://titanpl.vercel.app/docs/how-to-use/05-runtime-apis#api-reference)**
22
+
23
+ ## đŸĒ Features
24
+
25
+ * **Deterministic Async**: Powered by the Gravity Drift engine.
26
+ * **Native Extensions**: Seamlessly load and use `@titanpl/core` and other native modules.
27
+ * **Zero Config**: No `node_modules` required for core execution.
28
+ * **TypeScript Support**: Built-in IntelliSense and type definitions via `@titanpl/native`.
29
+
30
+ ---
31
+ *Orbiting at the edge of performance.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tgrv/cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Gravity Standalone Runtime CLI",
5
5
  "bin": {
6
6
  "tgrv": "index.js"