pi-boop 0.0.1 → 1.0.0

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/CHANGELOG.md +6 -0
  2. package/package.json +11 -13
package/CHANGELOG.md CHANGED
@@ -1 +1,7 @@
1
1
  # pi-boop
2
+
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [`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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-boop",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "description": "Pi extension that plays the terminal bell or a custom sound when Pi waits for input.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -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
+ }