even-pf 0.1.0 → 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 (2) hide show
  1. package/README.md +8 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,14 @@
1
1
  # Project Even-Playfield (E-PF)
2
2
  AI-assisted responsible grading tool for programming assignments. A GPT-wrapper in CLI for CS graders.
3
3
 
4
+ ## Usage
5
+ Make sure you have [Bun](https://bun.com) installed.
6
+ To run:
7
+ ```bash
8
+ bunx even-pf
9
+ ```
10
+
11
+ ## Development
4
12
  To install dependencies:
5
13
  ```bash
6
14
  bun install
@@ -11,10 +19,6 @@ To install as a tool globally:
11
19
  bun link
12
20
  ```
13
21
 
14
- To run:
15
- ```bash
16
- bunx e-pf
17
- ```
18
22
  Make sure you have a config file in your home or current directory. Alternatively, you can set environment variable `EPF_CONFIG_URL`.
19
23
 
20
24
  This project was created using `bun init` in bun v1.3.2. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "even-pf",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "module": "src/index.ts",
5
5
  "type": "module",
6
6
  "license": "UNLICENSED",