@strongflc/scode-linux-x64 0.1.27

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/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # s-code 平台子包
2
+
3
+ 这个包只包含一个平台的 s-code 原生二进制,**不应该被直接安装**。请安装主包:
4
+
5
+ ```bash
6
+ npm install -g s-code
7
+ ```
8
+
9
+ 主包会通过 `optionalDependencies` 只拉起匹配当前 `os`/`cpu` 的这一个子包,其它平台的子包被 npm 静默跳过。
10
+
11
+ 主项目仓库:<https://github.com/donzell/s-code>
package/bin/.gitkeep ADDED
File without changes
package/bin/scode ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@strongflc/scode-linux-x64",
3
+ "version": "0.1.27",
4
+ "description": "s-code 的 Linux x64 原生二进制。由主包 s-code 通过 optionalDependencies 拉起,不建议直接安装。",
5
+ "license": "MIT",
6
+ "homepage": "https://github.com/donzell/s-code",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/donzell/s-code.git"
10
+ },
11
+ "os": [
12
+ "linux"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ],
17
+ "files": [
18
+ "bin"
19
+ ]
20
+ }