@superzerodev/cli 0.1.0 → 0.1.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.
- package/LICENSE +31 -0
- package/package.json +4 -4
package/LICENSE
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Copyright (c) 2026 mashihara. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is proprietary. It is published on the npm registry so that
|
|
4
|
+
customers of the Superzero service can install and run it. Publication here
|
|
5
|
+
does not place it in the public domain and does not grant any open source
|
|
6
|
+
licence.
|
|
7
|
+
|
|
8
|
+
You may:
|
|
9
|
+
|
|
10
|
+
- install, copy and run this software for the purpose of using the
|
|
11
|
+
Superzero service, including inside automated build and deployment
|
|
12
|
+
systems;
|
|
13
|
+
- retain copies in your own dependency caches, lockfiles and internal
|
|
14
|
+
mirrors as needed for that purpose.
|
|
15
|
+
|
|
16
|
+
You may not, without prior written permission from the copyright holder:
|
|
17
|
+
|
|
18
|
+
- redistribute, sublicense, sell or publish this software or any part of
|
|
19
|
+
it, whether modified or not;
|
|
20
|
+
- modify, adapt, translate or create derivative works from it;
|
|
21
|
+
- decompile, disassemble or otherwise reverse engineer it, except to the
|
|
22
|
+
extent that applicable law expressly permits despite this restriction;
|
|
23
|
+
- remove or alter this notice.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
29
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
30
|
+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
+
SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superzerodev/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@superzerodev/
|
|
9
|
-
"@superzerodev/
|
|
8
|
+
"@superzerodev/core": "0.1.1",
|
|
9
|
+
"@superzerodev/config": "0.1.1"
|
|
10
10
|
},
|
|
11
11
|
"bin": {
|
|
12
12
|
"superzero": "./dist/bin.js"
|
|
13
13
|
},
|
|
14
14
|
"description": "The Superzero CLI. Plan, apply and verify a whole app from one declaration file.",
|
|
15
|
-
"license": "
|
|
15
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
18
18
|
"url": "git+https://github.com/mashihara/superzero.git",
|