codex-rtl 0.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 (3) hide show
  1. package/README.md +13 -0
  2. package/bin/index.js +3 -0
  3. package/package.json +30 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # codex-rtl
2
+
3
+ This is a placeholder package for `codex-rtl`.
4
+
5
+ It will be developed into a tool for handling RTL (Right-to-Left) formatting/conversions or similar operations for Codex.
6
+
7
+ ## Installation / Usage
8
+
9
+ You can run this package directly via `npx`:
10
+
11
+ ```bash
12
+ npx codex-rtl
13
+ ```
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("codex-rtl has been successfully reserved on npm. Stay tuned for future releases!");
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "codex-rtl",
3
+ "version": "0.0.1",
4
+ "description": "Reserved name for codex-rtl command-line tool",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "codex-rtl": "./bin/index.js"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "test": "echo \"Error: no test specified\" && exit 0"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/mmnaderi/codex-rtl.git"
19
+ },
20
+ "keywords": [
21
+ "codex",
22
+ "rtl"
23
+ ],
24
+ "author": "",
25
+ "license": "MIT",
26
+ "bugs": {
27
+ "url": "https://github.com/mmnaderi/codex-rtl/issues"
28
+ },
29
+ "homepage": "https://github.com/mmnaderi/codex-rtl#readme"
30
+ }