spessasynth_lib 3.9.9 → 3.9.10

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 +5 -4
  2. package/package.json +1 -2
package/README.md CHANGED
@@ -1,15 +1,16 @@
1
1
  # spessasynth_lib
2
- A powerful soundfont/MIDI JavaScript library.
2
+ **A powerful soundfont/MIDI JavaScript library for the browsers.**
3
3
 
4
4
  ```shell
5
5
  npm install --save spessasynth_lib
6
6
  ```
7
7
 
8
- ## [Project site (consider giving it a star!)](https://github.com/spessasus/SpessaSynth)
8
+ ### [Project site (consider giving it a star!)](https://github.com/spessasus/SpessaSynth)
9
+ ### [Demo](https://spessasus.github.io/SpessaSynth)
9
10
 
10
- ## [Complete documentation](https://github.com/spessasus/SpessaSynth/wiki/Usage-As-Library)
11
+ ### [Complete documentation](https://github.com/spessasus/SpessaSynth/wiki/Usage-As-Library)
11
12
 
12
- ### Basic example: play a single note
13
+ #### Basic example: play a single note
13
14
  ```js
14
15
  import {Synthetizer} from "spessasynth_lib"
15
16
  const sfont = await (await fetch("soundfont.sf3")).arrayBuffer();
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "spessasynth_lib",
3
- "version": "3.9.9",
3
+ "version": "3.9.10",
4
4
  "description": "No compromise SoundFont and MIDI library and player",
5
5
  "browser": "index.js",
6
- "main": "index.js",
7
6
  "types": "@types/index.d.ts",
8
7
  "type": "module",
9
8
  "directories": {