2025-08-10 08:54:58 +00:00
|
|
|
{
|
|
|
|
|
"name": "voice-input",
|
2026-05-17 13:40:27 +00:00
|
|
|
"version": "0.9.5",
|
2025-08-10 08:54:58 +00:00
|
|
|
"description": "Voice input plugin for Obsidian with accurate transcription",
|
|
|
|
|
"main": "main.js",
|
2026-05-17 12:14:15 +00:00
|
|
|
"engines": {
|
|
|
|
|
"node": ">=22"
|
|
|
|
|
},
|
2025-08-10 08:54:58 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "node esbuild.config.mjs",
|
|
|
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
|
|
|
"build-plugin": "npm run build && node scripts/post-build.mjs",
|
2025-10-28 18:07:36 +00:00
|
|
|
"deploy": "npm run deploy-local",
|
2025-08-10 08:54:58 +00:00
|
|
|
"analyze:unused": "node scripts/analyze-unused.mjs",
|
|
|
|
|
"deploy-local": "npm run build-plugin && node scripts/deploy-local.mjs",
|
|
|
|
|
"deploy:quick": "npm run deploy-local",
|
|
|
|
|
"check": "npm run lint && npm run build",
|
2025-12-25 16:29:26 +00:00
|
|
|
"check:artifacts": "node scripts/check-artifacts.mjs",
|
|
|
|
|
"check:prepr": "npm run lint && npm test && npm run build-plugin && npm run check:artifacts",
|
2026-05-17 12:14:15 +00:00
|
|
|
"lint": "eslint src manifest.json --ext .ts --max-warnings=0",
|
|
|
|
|
"lint:fix": "eslint src manifest.json --ext .ts --fix --max-warnings=0",
|
2025-08-10 08:54:58 +00:00
|
|
|
"test": "jest",
|
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
|
"test:coverage": "jest --coverage",
|
|
|
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"obsidian",
|
|
|
|
|
"plugin",
|
|
|
|
|
"voice",
|
|
|
|
|
"transcription",
|
|
|
|
|
"gpt-4o"
|
|
|
|
|
],
|
|
|
|
|
"author": "Musashino Software",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2025-12-25 15:40:01 +00:00
|
|
|
"@eslint/js": "9.39.2",
|
|
|
|
|
"@eslint/json": "0.14.0",
|
2026-05-17 12:14:15 +00:00
|
|
|
"@types/jest": "30.0.0",
|
2025-08-10 08:54:58 +00:00
|
|
|
"@types/node": "^16.11.6",
|
2025-11-09 15:24:43 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
|
|
|
"@typescript-eslint/parser": "^8.46.3",
|
2025-08-10 08:54:58 +00:00
|
|
|
"esbuild": "0.17.3",
|
2025-12-25 15:40:01 +00:00
|
|
|
"eslint": "9.39.2",
|
2026-05-17 12:14:15 +00:00
|
|
|
"eslint-plugin-obsidianmd": "0.3.0",
|
2025-12-25 15:40:01 +00:00
|
|
|
"globals": "16.5.0",
|
2026-05-17 12:14:15 +00:00
|
|
|
"jest": "30.0.5",
|
2025-08-10 08:54:58 +00:00
|
|
|
"jest-environment-jsdom": "^30.0.5",
|
2025-12-25 15:40:01 +00:00
|
|
|
"obsidian": "1.8.7",
|
2026-05-17 12:14:15 +00:00
|
|
|
"ts-jest": "29.4.0",
|
2025-11-08 18:31:38 +00:00
|
|
|
"tslib": "^2.6.2",
|
2025-11-09 15:24:43 +00:00
|
|
|
"typescript": "^5.5.4",
|
|
|
|
|
"typescript-eslint": "^8.46.3"
|
2025-08-10 08:54:58 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2026-05-17 13:40:27 +00:00
|
|
|
"@echogarden/fvad-wasm": "^0.2.0"
|
2025-08-10 08:54:58 +00:00
|
|
|
}
|
|
|
|
|
}
|