UNPKG

ts-audio

Version:

65 lines (64 loc) 1.49 kB
{ "name": "ts-audio", "type": "module", "version": "0.8.1", "author": "evandrolg", "license": "MIT", "source": "src/index.ts", "main": "dist/index.js", "module": "dist/index.modern.mjs", "umd:main": "dist/index.umd.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "sideEffects": false, "scripts": { "size": "bun run build && size-limit", "test": "bun test", "typecheck": "tsc --noEmit", "lint": "eslint src/", "lint:fix": "eslint src/ --fix", "format": "prettier --write src/", "format:check": "prettier --check src/", "build": "./scripts/build.sh", "prepare": "bunx husky", "prepublishOnly": "bun run build" }, "devDependencies": { "@eslint/js": "^9.39.2", "@happy-dom/global-registrator": "^16.6.0", "@size-limit/preset-small-lib": "^11.2.0", "@types/bun": "^1.3.5", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-import-x": "^4.16.1", "husky": "^9.1.7", "microbundle": "^0.15.1", "prettier": "3.4.2", "size-limit": "^11.2.0", "typescript": "^5.9.3", "typescript-eslint": "^8.52.0" }, "keywords": [ "audio", "song", "playlist", "AudioContext" ], "size-limit": [ { "path": "./dist/index.modern.mjs", "limit": "2.5 KB" }, { "path": "./dist/index.js", "limit": "2.5 KB" }, { "path": "./dist/index.umd.js", "limit": "2.5 KB" } ] }