@nissyai/desktop 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 +34 -0
- package/bin/nissy.mjs +1 -1
- package/package.json +5 -5
package/LICENSE
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Copyright (c) Cleverbit. All rights reserved.
|
|
2
|
+
|
|
3
|
+
Nissy and all accompanying files, code, and assets (the "Software") are the
|
|
4
|
+
proprietary and confidential property of Cleverbit. The Software is licensed,
|
|
5
|
+
not sold.
|
|
6
|
+
|
|
7
|
+
Subject to your continued compliance with these terms, Cleverbit grants you a
|
|
8
|
+
limited, personal, non-exclusive, non-transferable, non-sublicensable, and
|
|
9
|
+
revocable licence to install and run the unmodified Software solely for its
|
|
10
|
+
intended purpose. No other rights are granted.
|
|
11
|
+
|
|
12
|
+
Except as expressly permitted above, you may not, in whole or in part: copy,
|
|
13
|
+
reproduce, modify, adapt, translate, or create derivative works of the
|
|
14
|
+
Software; distribute, publish, sublicense, sell, rent, lease, lend, or
|
|
15
|
+
otherwise make the Software available to any third party; or reverse engineer,
|
|
16
|
+
decompile, disassemble, or otherwise attempt to derive the source code of the
|
|
17
|
+
Software, except to the extent this restriction is prohibited by applicable
|
|
18
|
+
law.
|
|
19
|
+
|
|
20
|
+
All right, title, and interest in and to the Software, including all
|
|
21
|
+
intellectual property rights, remain with Cleverbit. This licence grants no
|
|
22
|
+
rights to Cleverbit's trademarks, logos, or brand.
|
|
23
|
+
|
|
24
|
+
Cleverbit may suspend or terminate this licence at any time. On termination you
|
|
25
|
+
must cease all use of the Software and destroy all copies in your possession.
|
|
26
|
+
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29
|
+
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
30
|
+
CLEVERBIT BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
|
|
31
|
+
ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
|
|
32
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
33
|
+
|
|
34
|
+
Contact: hello@cleverbit.software
|
package/bin/nissy.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
//
|
|
3
|
-
// `nissy` launcher entry point
|
|
3
|
+
// `nissy` launcher entry point for `npx @nissyai/desktop`.
|
|
4
4
|
//
|
|
5
5
|
// Picks the payload package for the host platform/arch, finds where npm
|
|
6
6
|
// installed it, and spawns the self-contained app executable inside it,
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nissyai/desktop",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "Launcher for the Nissy desktop app
|
|
5
|
+
"description": "Launcher for the Nissy desktop app. Resolves the host's app payload and spawns it. Run via `npx @nissyai/desktop`; a global install (`npm i -g @nissyai/desktop`) exposes the `nissy` command.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Cleverbit",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"src/"
|
|
21
21
|
],
|
|
22
22
|
"optionalDependencies": {
|
|
23
|
-
"@nissyai/app-win32-x64": "0.1.
|
|
24
|
-
"@nissyai/app-darwin-arm64": "0.1.
|
|
25
|
-
"@nissyai/app-darwin-x64": "0.1.
|
|
23
|
+
"@nissyai/app-win32-x64": "0.1.1",
|
|
24
|
+
"@nissyai/app-darwin-arm64": "0.1.1",
|
|
25
|
+
"@nissyai/app-darwin-x64": "0.1.1"
|
|
26
26
|
}
|
|
27
27
|
}
|