@titanpl/native 1.0.0 → 26.16.4

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 +11 -0
  2. package/package.json +12 -4
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @titanpl/native
2
+
3
+ The native utility extension module for Titan Planet.
4
+
5
+ ## What it works (What it does)
6
+ It acts as the low-level communication bridge offering type definitions and utility wrappers out-of-the-box. Rather than being dependent on heavy JavaScript libraries, this package bridges Node-style features gracefully to the Titan runtime environment.
7
+
8
+ ## How it works
9
+ You can import tools and primitives from this package into your server-side actions alongside `@titanpl/core` when you want direct low-level interaction or need access to platform operations that interact directly with the C/Rust engine.
10
+
11
+ **Important Note:** Currently, Titan Planet and its entire package ecosystem are only for Windows. The Linux version is in development (dev only) for the new architecture and will be launched later.
package/package.json CHANGED
@@ -1,8 +1,16 @@
1
1
  {
2
2
  "name": "@titanpl/native",
3
- "version": "1.0.0",
3
+ "version": "26.16.4",
4
4
  "description": "Titan native utilities package",
5
5
  "type": "module",
6
+ "keywords": [
7
+ "titan",
8
+ "titanpl",
9
+ "t8n",
10
+ "native",
11
+ "utilities",
12
+ "ezetgalaxy"
13
+ ],
6
14
  "main": "index.js",
7
15
  "types": "./t.native.d.ts",
8
16
  "exports": {
@@ -12,7 +20,7 @@
12
20
  }
13
21
  },
14
22
  "dependencies": {
15
- "@titanpl/core": "26.16.0",
16
- "@titanpl/node": "26.16.0"
23
+ "@titanpl/core": "latest",
24
+ "@titanpl/node": "latest"
17
25
  }
18
- }
26
+ }