mirror of
https://github.com/mssoftjp/obsidian-voice-input.git
synced 2026-07-22 06:44:48 +00:00
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "voice-input",
|
|
"version": "0.9.2",
|
|
"description": "Voice input plugin for Obsidian with accurate transcription",
|
|
"main": "main.js",
|
|
"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",
|
|
"deploy": "npm run deploy-local",
|
|
"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",
|
|
"lint": "eslint src/**/*.ts",
|
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
"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": {
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.46.3",
|
|
"@typescript-eslint/parser": "^8.46.3",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-obsidianmd": "^0.1.8",
|
|
"jest-environment-jsdom": "^30.0.5",
|
|
"obsidian": "latest",
|
|
"tslib": "^2.6.2",
|
|
"typescript": "^5.5.4",
|
|
"typescript-eslint": "^8.46.3"
|
|
},
|
|
"dependencies": {
|
|
"@echogarden/fvad-wasm": "^0.2.0",
|
|
"@types/jest": "^30.0.0",
|
|
"jest": "^30.0.5",
|
|
"lodash.merge": "^4.6.2",
|
|
"ts-jest": "^29.4.0"
|
|
}
|
|
}
|