@akshatbuilds/sonix 1.0.0 → 1.0.2

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
@@ -2,7 +2,7 @@
2
2
 
3
3
  Micro UX audio for interactive web applications. Zero dependencies. Copy-paste ready.
4
4
 
5
- [Live Demo](https://abhi-yo.github.io/sound-library) · [Browse Sounds](#available-sounds) · [CLI](#cli)
5
+ [Live Demo](https://soundcomponents.vercel.app) · [Browse Sounds](#available-sounds) · [CLI](#cli)
6
6
 
7
7
  ---
8
8
 
@@ -56,9 +56,9 @@ function MyButton() {
56
56
  Add sounds to any project with the CLI:
57
57
 
58
58
  ```bash
59
- npx sonix list # List all available sounds
60
- npx sonix add pop # Add a single sound
61
- npx sonix add pop swoosh # Add multiple sounds
59
+ npx @akshatbuilds/sonix list # List all available sounds
60
+ npx @akshatbuilds/sonix add pop # Add a single sound
61
+ npx @akshatbuilds/sonix add pop swoosh # Add multiple sounds
62
62
  ```
63
63
 
64
64
  Sounds are written to `lib/sounds/` as standalone files — no runtime dependency.
package/cli/index.mjs CHANGED
@@ -17,7 +17,7 @@ import { join } from "node:path";
17
17
 
18
18
  const REGISTRY_URL =
19
19
  process.env.SONIX_REGISTRY ||
20
- "https://abhi-yo.github.io/sound-library/registry";
20
+ "https://soundcomponents.vercel.app/registry";
21
21
 
22
22
  const COLORS = {
23
23
  reset: "\x1b[0m",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akshatbuilds/sonix",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Micro UX sound effects for interactive web applications. Zero dependencies, copy-paste ready.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -18,7 +18,7 @@
18
18
  "nextjs"
19
19
  ],
20
20
  "bin": {
21
- "sonix": "cli/index.mjs"
21
+ "@akshatbuilds/sonix": "./cli/index.mjs"
22
22
  },
23
23
  "scripts": {
24
24
  "dev": "next dev --turbo",