univer-cli 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 +27 -0
  2. package/index.js +4 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # univer-cli
2
+
3
+ A command-line tool for Univer.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g univer-cli
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ univer-cli --help
15
+ ```
16
+
17
+ ## License
18
+
19
+ Proprietary. All rights reserved.
20
+
21
+ ---
22
+
23
+ Coming Soon
24
+
25
+ This package is currently under development. More features and documentation will be available soon.
26
+
27
+ For questions or feedback, please contact the development team.
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('univer-cli v0.0.1');
4
+ console.log('Placeholder package for univer-cli');
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "univer-cli",
3
+ "version": "0.0.1",
4
+ "description": "Univer CLI - A command-line tool for Univer",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": ["univer", "cli"],
10
+ "author": "",
11
+ "license": "ISC",
12
+ "type": "commonjs",
13
+ "publishConfig": {
14
+ "registry": "https://registry.npmjs.org/"
15
+ }
16
+ }