miniaudio_node 0.0.9 → 0.1.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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,31 @@
1
1
  {
2
2
  "name": "miniaudio_node",
3
- "version": "0.0.9",
3
+ "version": "0.1.0",
4
+ "description": "High-performance native audio playback for Node.js and Bun. Built with Rust and the powerful rodio audio engine.",
5
+ "keywords": [
6
+ "audio",
7
+ "sound",
8
+ "music",
9
+ "playback",
10
+ "rust",
11
+ "native",
12
+ "miniaudio",
13
+ "rodio",
14
+ "nodejs",
15
+ "bun",
16
+ "wav",
17
+ "mp3",
18
+ "flac",
19
+ "ogg"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/nglmercer/miniaudio-node.git"
24
+ },
25
+ "homepage": "https://github.com/nglmercer/miniaudio-node#readme",
26
+ "bugs": {
27
+ "url": "https://github.com/nglmercer/miniaudio-node/issues"
28
+ },
4
29
  "scripts": {
5
30
  "build": "napi build --platform --release",
6
31
  "build:debug": "napi build --platform",
@@ -13,7 +38,8 @@
13
38
  "files": [
14
39
  "index.js",
15
40
  "index.d.ts",
16
- "*.node"
41
+ "*.node",
42
+ "README.md"
17
43
  ],
18
44
  "devDependencies": {
19
45
  "@napi-rs/cli": "^2.18.0"
@@ -34,5 +60,10 @@
34
60
  },
35
61
  "engines": {
36
62
  "node": ">=18.0.0"
63
+ },
64
+ "license": "MIT",
65
+ "author": {
66
+ "name": "nglmercer",
67
+ "email": "nglmercer@gmail.com"
37
68
  }
38
69
  }