@writ-agent/cli-linux-arm64 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.
Files changed (3) hide show
  1. package/README.md +3 -0
  2. package/bin/writ +0 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @writ-agent/cli-linux-arm64
2
+
3
+ The prebuilt `writ` binary for linux-arm64. Do not install this directly: install [`@writ-agent/cli`](https://www.npmjs.com/package/@writ-agent/cli), which picks the right platform package.
package/bin/writ ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "@writ-agent/cli-linux-arm64",
3
+ "version": "0.1.1",
4
+ "description": "The prebuilt writ binary for linux-arm64 (aarch64-unknown-linux-musl). Install @writ-agent/cli instead.",
5
+ "license": "Apache-2.0",
6
+ "author": "Bhaskar Gurram <gurrambhaskar.ai@gmail.com>",
7
+ "homepage": "https://github.com/writ-agent/writ",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/writ-agent/writ.git"
11
+ },
12
+ "os": [
13
+ "linux"
14
+ ],
15
+ "cpu": [
16
+ "arm64"
17
+ ],
18
+ "files": [
19
+ "bin/"
20
+ ],
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "preferUnplugged": true
25
+ }