UNPKG

@logue/smfplayer

Version:

smfplayer.js is JavaScript based Standard Midi Player for WebMidiLink based synthesizer.

118 lines (117 loc) 3.07 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "@logue/smfplayer", "description": "smfplayer.js is JavaScript based Standard Midi Player for WebMidiLink based synthesizer.", "type": "module", "author": { "name": "imaya / GREE Inc.", "url": "https://github.com/gree" }, "contributors": [ { "name": "Logue", "email": "logue@hotmail.co.jp", "url": "https://logue.dev" } ], "version": "0.8.0", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/logue/smfplayer.js.git" }, "keywords": [ "mabinogi", "Maple Story 2", "midi player", "midi", "mml", "ms2mml", "Music Macro Language", "sequencer", "smf", "webaudio", "WebMidiLink", "wml" ], "bugs": { "url": "https://github.com/logue/smfplayer.js/issues" }, "homepage": "https://logue.dev/smfplayer.js/", "files": [ "dist" ], "main": "dist/smfplayer.umd.js", "module": "dist/smfplayer.es.js", "jsdelivr": "dist/smfplayer.iife.js", "unpkg": "dist/smfplayer.iife.js", "exports": { ".": { "import": "./dist/smfplayer.es.js" } }, "engines": { "node": ">=24.13.0" }, "packageManager": "pnpm@11.1.2", "pnpm": { "overrides": { "flat-cache@4.0.1>flatted": "3.4.2", "minimatch@3.1.5>brace-expansion": "1.1.13", "micromatch@4.0.8>picomatch": "2.3.2", "tinyglobby@0.2.15>picomatch": "4.0.4", "fdir@6.5.0>picomatch": "4.0.4" } }, "scripts": { "dev": "vite --mode=docs", "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", "preview": "vite preview --mode=docs", "prepare": "husky" }, "dependencies": { "encoding-japanese": "^2.2.0", "ini": "^7.0.0" }, "devDependencies": { "@eslint/eslintrc": "^3.3.5", "@eslint/js": "^10.0.1", "@popperjs/core": "^2.11.8", "@types/ini": "^4.1.1", "@types/node": "^25.8.0", "@zip.js/zip.js": "^2.8.26", "bootstrap": "5.3.8", "bootstrap-icons": "^1.13.1", "buffer": "^6.0.3", "dseg": "^0.46.0", "eslint": "^10.4.0", "eslint-config-prettier": "^10.1.8", "eslint-import-resolver-custom-alias": "^1.3.2", "eslint-import-resolver-typescript": "^4.4.4", "eslint-plugin-import-x": "^4.16.2", "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", "streamsaver": "^2.0.6", "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,htm,html,md}": "eslint . --fix --cache --cache-location ./node_modules/.vite/vite-plugin-eslint", "*": "prettier -w -u" } }