asyouplz_SpeechNote/package.json
semantic-release-bot 7531c3d241 chore(release): 4.0.6 [skip ci]
## [4.0.6](https://github.com/asyouplz/SpeechNote/compare/v4.0.5...v4.0.6) (2026-02-03)

### 🐛 Bug Fixes

* **ui:** align emoji labels with sentence case ([#64](https://github.com/asyouplz/SpeechNote/issues/64)) ([2bcaa6a](2bcaa6a07e))
2026-02-03 09:01:55 +00:00

98 lines
3.9 KiB
JSON

{
"name": "obsidian-speechnote",
"version": "4.0.6",
"description": "Convert audio recordings to text in Obsidian using multiple AI providers (OpenAI Whisper, Deepgram)",
"main": "main.js",
"scripts": {
"prepare": "husky",
"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",
"version:update": "node scripts/update-version.mjs",
"semantic-release": "semantic-release",
"release:dry-run": "semantic-release --dry-run",
"release:debug": "semantic-release --debug",
"posttest": "npm run coverage:report",
"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"
},
"keywords": [
"obsidian",
"plugin",
"speechnote",
"whisper",
"transcription",
"audio",
"voice"
],
"author": "Taesun Lee",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@deepgram/sdk": "^3.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@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",
"conventional-changelog-conventionalcommits": "^9.1.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",
"semantic-release": "^25.0.2",
"ts-jest": "^29.1.0",
"tslib": "^2.4.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}