mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 01:39:21 +02:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "@yume-chan/pcm-player",
|
|
"version": "1.0.0",
|
|
"description": "Play raw audio sample stream using Web Audio API",
|
|
"keywords": [
|
|
"audio"
|
|
],
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Simon Chan",
|
|
"email": "cnsimonchan@live.com",
|
|
"url": "https://chensi.moe/blog"
|
|
},
|
|
"homepage": "https://github.com/yume-chan/ya-webadb/tree/main/packages/pcm-player#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yume-chan/ya-webadb.git",
|
|
"directory": "packages/pcm-player"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yume-chan/ya-webadb/issues"
|
|
},
|
|
"type": "module",
|
|
"main": "esm/index.js",
|
|
"types": "esm/index.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc -b tsconfig.dom.json && tsc -b tsconfig.worker.json",
|
|
"lint": "run-eslint && prettier src/**/*.ts --write --tab-width 4",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/audioworklet": "^0.0.83",
|
|
"@yume-chan/eslint-config": "workspace:^",
|
|
"@yume-chan/tsconfig": "workspace:^",
|
|
"prettier": "^3.6.2",
|
|
"typescript": "^5.9.2"
|
|
}
|
|
}
|