pi-boop 0.0.1 → 1.0.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/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/package.json +12 -14
package/CHANGELOG.md CHANGED
@@ -1 +1,13 @@
1
1
  # pi-boop
2
+
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2](https://github.com/bradennss/pi-boop/pull/2) [`1dc7aa1`](https://github.com/bradennss/pi-boop/commit/1dc7aa1e4ddaea582056340af7e32aeb35eb2d3e) Thanks [@bradennss](https://github.com/bradennss)! - Reword the description to say the sound plays when Pi is waiting for input.
8
+
9
+ ## 1.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - [`e16dd8c`](https://github.com/bradennss/pi-boop/commit/e16dd8cbe5d07059ddf4e9e6f676ec496345282f) Thanks [@bradennss](https://github.com/bradennss)! - First stable release. pi-boop plays the terminal bell or a custom sound file when Pi finishes a turn and waits for your input.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # pi-boop
2
2
 
3
- A [Pi](https://pi.dev) extension that plays the terminal bell or a custom sound when Pi finishes a turn and is waiting for your input.
3
+ A [Pi](https://pi.dev) extension that plays the terminal bell or a custom sound when Pi is waiting for input.
4
4
 
5
5
  ## Install
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pi-boop",
3
- "version": "0.0.1",
4
- "description": "Pi extension that plays the terminal bell or a custom sound when Pi waits for input.",
3
+ "version": "1.0.1",
4
+ "description": "Pi extension that plays the terminal bell or a custom sound when Pi is waiting for input.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Braden Lamb <hi@braden.lol>",
@@ -40,17 +40,6 @@
40
40
  "engines": {
41
41
  "node": ">=20"
42
42
  },
43
- "packageManager": "pnpm@10.32.1",
44
- "scripts": {
45
- "typecheck": "tsc --noEmit",
46
- "lint": "eslint .",
47
- "format": "prettier --write .",
48
- "format:check": "prettier --check .",
49
- "test": "vitest run",
50
- "test:watch": "vitest",
51
- "check": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm test",
52
- "prepack": "pnpm run check"
53
- },
54
43
  "pi": {
55
44
  "extensions": [
56
45
  "./index.ts"
@@ -71,5 +60,14 @@
71
60
  "typescript": "^5.6.0",
72
61
  "typescript-eslint": "^8.67.0",
73
62
  "vitest": "^4.1.11"
63
+ },
64
+ "scripts": {
65
+ "typecheck": "tsc --noEmit",
66
+ "lint": "eslint .",
67
+ "format": "prettier --write .",
68
+ "format:check": "prettier --check .",
69
+ "test": "vitest run",
70
+ "test:watch": "vitest",
71
+ "check": "pnpm run typecheck && pnpm run lint && pnpm run format:check && pnpm test"
74
72
  }
75
- }
73
+ }