{ "name": "obsidian-speech-to-text", "version": "3.0.14", "description": "Convert audio recordings to text in Obsidian using multiple AI providers (OpenAI Whisper, Deepgram)", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs", "build": "npx tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "build:css": "cat src/ui/styles/*.css styles/*.css > styles.css", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "lint:obsidian": "eslint src/**/*.ts --format=stylish", "lint:verbose": "eslint src/**/*.ts --format=stylish --max-warnings=0", "format": "prettier --write 'src/**/*.{ts,tsx}'", "format:check": "prettier --check 'src/**/*.{ts,tsx}'", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest --selectProjects='Unit Tests'", "test:integration": "jest --selectProjects='Integration Tests'", "test:e2e": "jest --selectProjects='E2E Tests'", "test:e2e:watch": "jest --selectProjects='E2E Tests' --watch", "test:all": "npm run test:unit && npm run test:integration && npm run test:e2e", "test:ci": "CI=true jest --ci --coverage --maxWorkers=2", "test:debug": "DEBUG=true node --inspect-brk ./node_modules/.bin/jest --runInBand", "test:changed": "jest -o", "test:update-snapshots": "jest -u", "coverage:report": "node scripts/open-coverage.js", "coverage:clean": "rm -rf coverage .jest-cache", "pretest": "npm run lint && npm run typecheck", "posttest": "npm run coverage:report", "version": "node version-bump.mjs && git add manifest.json versions.json", "clean": "rm -rf main.js main.js.map coverage .jest-cache", "clean:all": "npm run clean && rm -rf node_modules", "typecheck": "npx tsc -noEmit", "validate": "npm run lint && npm run typecheck && npm run test", "ci": "npm run validate && npm run build", "prepare": "husky" }, "keywords": [ "obsidian", "plugin", "speech-to-text", "whisper", "transcription", "audio", "voice" ], "author": "Taesun Lee", "license": "MIT", "devDependencies": { "@deepgram/sdk": "^3.9.0", "@testing-library/jest-dom": "^6.9.1", "@types/jest": "^29.5.12", "@types/node": "^16.18.126", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "builtin-modules": "^3.3.0", "esbuild": "0.25.0", "eslint": "^8.42.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-obsidianmd": "^0.1.9", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-unused-imports": "^4.3.0", "husky": "^9.1.7", "jest": "^29.5.0", "jest-environment-jsdom": "^29.5.0", "jest-html-reporters": "^3.1.4", "jest-junit": "^16.0.0", "jest-progress-bar-reporter": "^1.0.25", "jest-serializer-html": "^7.1.0", "jest-sonar-reporter": "^2.0.0", "jest-watch-typeahead": "^2.2.2", "lint-staged": "^16.2.7", "obsidian": "latest", "prettier": "^2.8.8", "ts-jest": "^29.1.0", "tslib": "^2.4.0", "typescript": "^4.9.5" }, "overrides": { "npm": "11.7.0" }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }