@jaisocx/command-line 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 +45 -0
  2. package/package.json +32 -0
package/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # Command Line
2
+
3
+
4
+
5
+ ## Aim of the setup
6
+
7
+
8
+
9
+
10
+ ## Status
11
+
12
+ Ready
13
+
14
+ ## Latest update
15
+
16
+ `@jaisocx/command-line` ver. 1.0.1
17
+
18
+ Sat Aug 30 16:05:25 CEST 2025
19
+
20
+
21
+
22
+ ## What is this
23
+
24
+
25
+
26
+
27
+ ## bash coding example
28
+
29
+
30
+
31
+ ## ts coding example
32
+
33
+
34
+
35
+ ## package structure
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@jaisocx/command-line",
3
+ "version": "1.0.1",
4
+ "author": "Jaisocx",
5
+ "keywords": [
6
+ "command",
7
+ "script",
8
+ "console",
9
+ "terminal"
10
+ ],
11
+ "private": false,
12
+ "description": "",
13
+ "type": "module",
14
+ "main": "./transpiled/CommonJS/index.js",
15
+ "types": "./transpiled/ESNext/index.d.ts",
16
+ "module": "./transpiled/ESNext/index.js",
17
+ "exports": {
18
+ "require": "./transpiled/CommonJS/index.js",
19
+ "import": "./transpiled/ESNext/index.js"
20
+ },
21
+ "files": [
22
+ "transpiled/CommonJS",
23
+ "transpiled/ESNext",
24
+ "transpiled/Simple",
25
+ "README.md"
26
+ ],
27
+ "publishConfig": {
28
+ "access": "public"
29
+ }
30
+ }
31
+
32
+