chatlab-cli 0.0.0

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 +5 -0
  2. package/cli.js +3 -0
  3. package/package.json +28 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # chatlab-cli
2
+
3
+ Reserved package name for the official ChatLab CLI.
4
+
5
+ This package is a placeholder. The real ChatLab CLI will be published in a future version.
package/cli.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('chatlab-cli is reserved. The official ChatLab CLI will be released soon.');
package/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "chatlab-cli",
3
+ "version": "0.0.0",
4
+ "description": "Reserved package name for ChatLab CLI.",
5
+ "bin": {
6
+ "chatlab-cli": "cli.js"
7
+ },
8
+ "files": [
9
+ "cli.js",
10
+ "README.md"
11
+ ],
12
+ "license": "MIT",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/ChatLab/ChatLab.git"
16
+ },
17
+ "homepage": "https://github.com/ChatLab/ChatLab#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/ChatLab/ChatLab/issues"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public",
23
+ "registry": "https://registry.npmjs.org/"
24
+ },
25
+ "engines": {
26
+ "node": ">=18"
27
+ }
28
+ }