mirror of
https://github.com/zhouhua/obsidian-waveform-player.git
synced 2026-07-22 05:41:57 +00:00
0.0.2
This commit is contained in:
parent
e3396032da
commit
3b7e927bf0
3 changed files with 57 additions and 0 deletions
10
manifest.json
Normal file
10
manifest.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"id": "waveform-player",
|
||||
"name": "Waveform Player",
|
||||
"version": "0.0.2",
|
||||
"minAppVersion": "1.7.7",
|
||||
"description": "An Obsidian plugin that renders audio files as waveforms using @waveform-audio/player",
|
||||
"author": "Zhou Hua",
|
||||
"authorUrl": "https://zhouhua.site",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
43
package.json
Normal file
43
package.json
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"name": "obsidian-waveform-player",
|
||||
"type": "module",
|
||||
"version": "0.0.2",
|
||||
"description": "Obsidian plugin for rendering audio files as waveforms",
|
||||
"author": "zhouhua",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"obsidian",
|
||||
"plugin",
|
||||
"audio",
|
||||
"waveform"
|
||||
],
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"dev": "node esbuild.config.mjs",
|
||||
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
||||
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@codemirror/language": "^6.0.0",
|
||||
"@codemirror/state": "^6.0.0",
|
||||
"@codemirror/view": "^6.0.0",
|
||||
"@lezer/common": "^1.2.0",
|
||||
"@types/node": "^22.10.5",
|
||||
"@types/react": "^18.3.0",
|
||||
"@types/react-dom": "^18.3.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.24.0",
|
||||
"@typescript-eslint/parser": "8.24.0",
|
||||
"@waveform-audio/inf": "^0.0.1",
|
||||
"builtin-modules": "4.0.0",
|
||||
"esbuild": "0.25.0",
|
||||
"obsidian": "latest",
|
||||
"obsidian-typings": "^2.8.1",
|
||||
"tslib": "2.8.1",
|
||||
"typescript": "5.7.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@waveform-audio/player": "^0.0.3",
|
||||
"react": "^18.3.0",
|
||||
"react-dom": "^18.3.0"
|
||||
}
|
||||
}
|
||||
4
versions.json
Normal file
4
versions.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"0.0.1": "1.7.7",
|
||||
"0.0.2": "1.7.7"
|
||||
}
|
||||
Loading…
Reference in a new issue