49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "tauri-plugin-mic-recorder-api",
|
|
"version": "2.0.0",
|
|
"author": "ayangweb",
|
|
"description": "Supports recording audio using a microphone and saving the recorded data as a file.",
|
|
"keywords": [
|
|
"audio-recording",
|
|
"microphone-recording",
|
|
"tauri",
|
|
"tauri-plugin"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/ayangweb/tauri-plugin-mic-recorder.git"
|
|
},
|
|
"homepage": "https://github.com/ayangweb/tauri-plugin-mic-recorder#readme",
|
|
"bugs": "https://github.com/ayangweb/tauri-plugin-mic-recorder/issues",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "./dist-js/index.d.ts",
|
|
"main": "./dist-js/index.cjs",
|
|
"module": "./dist-js/index.js",
|
|
"exports": {
|
|
"types": "./dist-js/index.d.ts",
|
|
"import": "./dist-js/index.js",
|
|
"require": "./dist-js/index.cjs"
|
|
},
|
|
"files": [
|
|
"dist-js",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "pnpm build",
|
|
"pretest": "pnpm build",
|
|
"release": "release-it"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": ">=2.0.0-beta.6"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
"release-it": "^18.1.2",
|
|
"rollup": "^4.9.6",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|