vinuscli 0.0.1 → 0.0.2

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/LICENSE +22 -0
  2. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ VinusCLI — Proprietary License
2
+
3
+ Copyright (c) 2026 Yhano. All rights reserved.
4
+
5
+ This software and its source code are proprietary and confidential. No
6
+ license, right, or permission is granted to access, use, copy, modify,
7
+ merge, publish, distribute, sublicense, reverse-engineer, decompile, or
8
+ create derivative works of this software or its source code, in whole or in
9
+ part, except as expressly authorized in writing by the copyright holder.
10
+
11
+ The compiled distribution may be installed and run through official
12
+ channels (e.g. the npm registry) solely as a runnable application. This
13
+ grant does not include any right to the source code, nor to redistribute,
14
+ resell, or reverse-engineer the software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22
+ DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vinuscli",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "The autonomous AI coding agent in your terminal — one key, every model. Coming soon.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "files": [
10
10
  "cli.js",
11
- "README.md"
11
+ "README.md",
12
+ "LICENSE"
12
13
  ],
13
14
  "engines": {
14
15
  "node": ">=18.0.0"
@@ -22,5 +23,5 @@
22
23
  "llm",
23
24
  "mcp"
24
25
  ],
25
- "license": "UNLICENSED"
26
+ "license": "SEE LICENSE IN LICENSE"
26
27
  }