@logue/sf2synth
Version:
SoundFont2 Synthesizer
117 lines • 3.34 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@logue/sf2synth",
"version": "0.8.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": "imaya / GREE Inc.",
"url": "https://github.com/gree"
},
"contributors": [
{
"name": "Logue",
"email": "logue@hotmail.co.jp",
"url": "https://logue.dev"
}
],
"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": ">=22.7.4",
"pnpm": ">=10.3.0"
},
"packageManager": "pnpm@10.26.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.4.3",
"bootstrap": "^5.3.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"query-string": "^9.3.1",
"rimraf": "^6.1.2",
"sass-embedded": "1.97.1",
"stylelint": "^16.26.1",
"stylelint-config-recommended-scss": "^16.0.2",
"stylelint-order": "^7.0.0",
"stylelint-prettier": "^5.0.3",
"vite": "^7.3.0",
"vite-plugin-banner": "^0.8.1",
"vite-plugin-checker": "^0.12.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"
},
"resolutions": {
"json5": ">=2.2.3",
"yaml": ">=2.3.2"
}
}