@nushell/windows-x64 0.3.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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 - 2023 The Nushell Project Developers
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+
2
+ ## Publish Nushell to the NPM repository
3
+
4
+ The only purpose of this repository is to publish [Nushell](https://github.com/nushell/nushell) officially released binaries to the `NPM` registry as is, for easy installation via `npm`.
5
+
6
+ For issues about the `nushell` **npm** package (such as installation, format, etc.) please create an issue [here](https://github.com/hustcer/nu-to-npm/issues), and for issues about the `nu` binaries please go to the [Official Nushell Repo](https://github.com/nushell/nushell/issues) to submit an issue.
7
+
8
+ ## Note
9
+
10
+ The **npm** package for `nushell` currently contains only the `nu` binary, and the official plugins were not included, if you need the full version, please build it from source or [download the packages from here](https://github.com/nushell/nushell/releases)
11
+
@@ -0,0 +1,10 @@
1
+
2
+ ## 将 Nushell 发布到 NPM 仓库
3
+
4
+ 本仓库的唯一作用就是将 [Nushell](https://github.com/nushell/nushell) 官方发布的二进制文件原封不动地发布到 `NPM` 仓库,方便大家通过 `npm` 安装使用。
5
+
6
+ 对于 `nushell` **npm** 包的问题(诸如安装、格式等)可以 [在此](https://github.com/hustcer/nu-to-npm/issues) 提 Issue,至于 `nu` 二进制文件的问题请前往 [此处](https://github.com/nushell/nushell/issues) 提 Issue。
7
+
8
+ ## 注意
9
+
10
+ `nushell` 的 **npm** 包内目前只包含 `nu` 二进制文件,不含官方提供的各插件,如需完整版本请自行通过源码构建或者 [由此下载](https://github.com/nushell/nushell/releases)
package/bin/nu.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@nushell/windows-x64",
3
+ "version": "0.3.0",
4
+ "description": "Publish the official nushell binary to npm by @hustcer",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/nushell/nushell.git"
8
+ },
9
+ "author": "hustcer <hustcer@gmail.com>",
10
+ "homepage": "https://github.com/hustcer/nu-to-npm#readme",
11
+ "os": [
12
+ "win32"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ]
17
+ }