@mymusictaste/async-audiorecorder
Version:
node-audiorecorder with async/await & typescript support
38 lines (37 loc) • 955 B
JSON
{
"name": "@mymusictaste/async-audiorecorder",
"description": "node-audiorecorder with async/await & typescript support",
"author": {
"name": "Jinhyeok Lee",
"email": "zenyr@zenyr.com"
},
"homepage": "https://unpkg.com/@mymusictaste/async-audiorecorder/",
"private": false,
"type": "module",
"license": "MIT",
"main": "dist/cjs/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"version": "0.1.1",
"dependencies": {
"node-audiorecorder": "^3.0.0"
},
"scripts": {
"copy-module": "cp ./src/module.d.ts ./dist/esm/ && cp ./src/module.d.ts ./dist/cjs/",
"build": "rm -rf ./dist && tsc && tsc -p tsconfig.cjs.json && yarn copy-module",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/node": "*",
"typescript": "^5.0.4"
},
"files": [
"dist",
"README.md"
]
}