UNPKG

@logue/sf2synth

Version:
112 lines 3.25 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "@logue/sf2synth", "version": "0.9.0", "type": "module", "description": "SoundFont2 Synthesizer", "repository": { "type": "git", "url": "git+https://github.com/logue/sf2synth.js.git" }, "keywords": [ "midi", "WebMidiLink", "wml", "sf2", "soundfont", "synthesizer", "webaudio", "gm", "xg", "gs" ], "author": { "name": "Logue", "email": "logue@hotmail.co.jp", "url": "https://logue.dev" }, "contributors": [ { "name": "imaya / GREE Inc.", "url": "https://github.com/gree" } ], "license": "MIT", "bugs": { "url": "https://github.com/logue/sf2synth.js/issues" }, "homepage": "https://github.com/logue/sf2synth.js", "files": [ "dist" ], "main": "dist/sf2synth.umd.js", "module": "dist/sf2synth.es.js", "jsdelivr": "dist/sf2synth.iife.js", "unpkg": "dist/sf2synth.iife.js", "style": "dist/sf2synth.css", "exports": { ".": { "import": "./dist/sf2synth.es.js", "style": "./dist/sf2synth.css" }, "./dist/style.css": "./dist/sf2synth.css", "./dist/Yamaha XG Sound Set.sf2": "./dist/Yamaha XG Sound Set.sf2", "./dist/Yamaha XG Sound Set Ver.2.0.sf2": "./dist/Yamaha XG Sound Set Ver.2.0.sf2", "./dist/SoundFont Copyright.txt": "./dist/SoundFont Copyright.txt", "./dist/A320U.sf2": "./dist/A320U.sf2", "./dist/A320U-license.txt": "./dist/A320U-license.txt" }, "engines": { "node": ">=24.13.0" }, "packageManager": "pnpm@11.1.2", "scripts": { "dev": "vite", "clean": "rimraf node_modules/.vite", "build": "vite build", "build:docs": "vite build --mode=docs", "build:clean": "rimraf dist", "lint": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint && prettier . --write", "lint:style": "stylelint \"./**/*.{css,sass,scss}\" --fix --cache-location ./node_modules/.vite/vite-plugin-stylelint", "preview": "vite preview --mode=docs", "prepare": "husky" }, "dependencies": { "@logue/reverb": "^1.5.2", "bootstrap": "^5.3.8" }, "devDependencies": { "@eslint/eslintrc": "^3.3.5", "@eslint/js": "^10.0.1", "@types/node": "^25.8.0", "eslint": "^10.4.0", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-alias": "^1.1.2", "eslint-plugin-import-x": "^4.16.2", "eslint-plugin-prettier": "^5.5.5", "globals": "^17.6.0", "husky": "^9.1.7", "lint-staged": "^17.0.5", "prettier": "^3.8.3", "query-string": "^9.3.1", "rimraf": "^6.1.3", "sass-embedded": "1.99.0", "stylelint": "^17.11.1", "stylelint-config-recommended-scss": "^17.0.1", "stylelint-order": "^8.1.1", "stylelint-prettier": "^5.0.3", "vite": "^8.0.13", "vite-plugin-banner": "^0.8.1", "vite-plugin-checker": "^0.13.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,ts,json,md}": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint", "*.{css,sass,scss}": "stylelint --fix --cache --cache-location ./node_modules/.vite/vite-plugin-stylelint", "*": "prettier -w -u" } }