@ivaniscoding/celq-linux-arm64 0.1.1-alpha.10 → 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 +49 -1
  2. package/bin/celq +0 -0
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -33,11 +33,59 @@ Moreover, the CEL specification is simpler than the jqlang specification. If you
33
33
 
34
34
  ## Installation
35
35
 
36
+ ### Pre-built Binaries
37
+
38
+ We publish pre-built binaries in celq's [GitHub Releases page](https://github.com/IvanIsCoding/celq/releases).
39
+
40
+ ### Homebrew (macOS)
41
+
42
+ If you are a [macOS Homebrew](https://brew.sh/) user, then you can install celq with:
43
+
44
+ ```bash
45
+ brew install IvanIsCoding/tap/celq
46
+ ```
47
+ #### Installing From Source
48
+
49
+ If you want to install from source, celq publishes to [crates.io](https://crates.io/crates/celq).
50
+
36
51
  ```bash
37
52
  cargo install celq
38
53
  ```
39
54
 
40
- This installs `celq` from source. In the future, pre-built binaries will be provided.
55
+ #### Installing With cargo-binstall
56
+
57
+ If you have [cargo-binstall](https://github.com/cargo-bins/cargo-binstall) installed, you can install pre-built binaries directly:
58
+
59
+ ```bash
60
+ cargo binstall celq
61
+ ```
62
+
63
+ ### Python
64
+
65
+ celq is packaged for [PyPI](https://pypi.org/project/celq/). Python users can install it with `pip`:
66
+
67
+ ```bash
68
+ pip install celq
69
+ ```
70
+
71
+ If you have [uv](https://github.com/astral-sh/uv) installed, `celq` can be used as a tool:
72
+ ```bash
73
+ uvx celq -n '"Hello World"'
74
+ ```
75
+
76
+ ### NPM (Node.js/JavaScript)
77
+
78
+ Node.js users can install celq in their project with:
79
+
80
+ ```bash
81
+ npm install celq
82
+ ```
83
+
84
+ This adds celq to `package.json` and makes it available for scripts. It's also possible to run single commands with:
85
+
86
+ ```bash
87
+ npx celq -n '"Hello World"'
88
+ ```
41
89
 
42
90
  ## Limitations
43
91
 
package/bin/celq CHANGED
Binary file
package/package.json CHANGED
@@ -15,11 +15,11 @@
15
15
  ],
16
16
  "publishConfig": {
17
17
  "access": "public",
18
- "tag": "prerelease"
18
+ "tag": "stable"
19
19
  },
20
20
  "repository": {
21
21
  "type": "git",
22
22
  "url": "git+https://github.com/IvanIsCoding/celq.git"
23
23
  },
24
- "version": "0.1.1-alpha.10"
24
+ "version": "0.1.1"
25
25
  }