{
  "name": "soundfont2-esm",
  "version": "0.6.0",
  "description": "A SoundFont2 parser for Node.js and web browsers",
  "type": "module",
  "main": "lib/index.js",
  "module": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js"
    }
  },
  "keywords": [
    "soundfont2",
    "soundfont",
    "sf2",
    "midi",
    "synthesizer"
  ],
  "author": "Felix Roos",
  "repository": "https://codeberg.org/froos/soundfont2-esm.git",
  "license": "MIT",
  "scripts": {
    "test": "jest",
    "clean": "rm -rf ./lib",
    "build": "tsc",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "files": [
    "lib",
    "src"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  }
}
