@sh-renjian/sw-linux-x64 0.1.0-rc.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/bin/sw +0 -0
  3. package/package.json +30 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @sh-renjian/sw-linux-x64
2
+
3
+ 该包提供 `sw` CLI 在 linux/x64 平台上的预编译二进制。
4
+
5
+ 通常不需要单独安装它,应直接安装:
6
+
7
+ ```sh
8
+ npm install -g @sh-renjian/sw
9
+ ```
package/bin/sw ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "@sh-renjian/sw-linux-x64",
3
+ "version": "0.1.0-rc.1",
4
+ "description": "Precompiled sw CLI for linux/x64",
5
+ "license": "UNLICENSED",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://git.sansi.net:6101/renjian/sansi-cloudflare-worker-platform.git"
9
+ },
10
+ "homepage": "https://git.sansi.net:6101/renjian/sansi-cloudflare-worker-platform",
11
+ "bugs": {
12
+ "url": "https://git.sansi.net:6101/renjian/sansi-cloudflare-worker-platform/-/issues"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "files": [
18
+ "bin/",
19
+ "README.md"
20
+ ],
21
+ "os": [
22
+ "linux"
23
+ ],
24
+ "cpu": [
25
+ "x64"
26
+ ],
27
+ "bin": {
28
+ "sw": "bin/sw"
29
+ }
30
+ }