@uge/payo 0.1.6 → 0.1.7

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 CHANGED
@@ -13,6 +13,10 @@ project's conventions instead of guessing.
13
13
  [![Bun](https://img.shields.io/badge/Bun-%3E%3D1.1.0-black?logo=bun)](https://bun.sh)
14
14
  [![Made with TypeScript](https://img.shields.io/badge/TypeScript-strict-3178c6?logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
15
15
 
16
+ <br />
17
+
18
+ ![Payo demo](https://raw.githubusercontent.com/uttam-gelot/payo/main/assets/demo.gif)
19
+
16
20
  </div>
17
21
 
18
22
  ---
@@ -29,6 +33,7 @@ project's conventions instead of guessing.
29
33
  - [Bootstrap prompt](#bootstrap-prompt)
30
34
  - [Resume anytime](#resume-anytime)
31
35
  - [Requirements](#requirements)
36
+ - [Run locally](#run-locally)
32
37
  - [Contributing](#contributing)
33
38
  - [License](#license)
34
39
 
@@ -161,7 +166,32 @@ generating what's missing. Finished runs clean the directory up automatically.
161
166
 
162
167
  ## Requirements
163
168
 
164
- - [Bun](https://bun.sh) **>= 1.1.0**
169
+ **To run Payo:** [Node.js](https://nodejs.org) **>= 18**. That's it — `npx @uge/payo`
170
+ runs the published, Node-targeted binary, so **you do not need Bun to use Payo.**
171
+ If you prefer Bun, `bunx @uge/payo` works too.
172
+
173
+ **To develop Payo:** [Bun](https://bun.sh) **>= 1.1.0** (the project builds, tests,
174
+ and runs from source with Bun — see [Run locally](#run-locally)).
175
+
176
+ ## Run locally
177
+
178
+ Hacking on Payo or running it from source:
179
+
180
+ ```bash
181
+ git clone https://github.com/uttam-gelot/payo.git
182
+ cd payo
183
+ bun install # Bun >= 1.1.0
184
+ bun run dev # runs src/index.ts directly
185
+ ```
186
+
187
+ Other useful scripts:
188
+
189
+ ```bash
190
+ bun test # run the test suite
191
+ bun run typecheck # tsc --noEmit
192
+ bun run lint # eslint
193
+ bun run build # bundle to dist/ (Node target)
194
+ ```
165
195
 
166
196
  ## Contributing
167
197
 
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uge/payo",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "CLI tool to generate AI rules and skills for your project",
5
5
  "repository": {
6
6
  "type": "git",