mirror of
https://github.com/asyouplz/SpeechNote.git
synced 2026-07-22 06:43:33 +00:00
## [4.0.16](https://github.com/asyouplz/SpeechNote/compare/v4.0.15...v4.0.16) (2026-03-19) ### 🐛 Bug Fixes * **ui:** namespace review-target css selectors ([#84](https://github.com/asyouplz/SpeechNote/issues/84)) ([1b0c80b](1b0c80b0ad)) ### 🔧 Maintenance * **repo:** remove ignored repo files ([#83](https://github.com/asyouplz/SpeechNote/issues/83)) ([77b63f5](77b63f54b3))
95 lines
3.8 KiB
JSON
95 lines
3.8 KiB
JSON
{
|
|
"name": "obsidian-speechnote",
|
|
"version": "4.0.16",
|
|
"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: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",
|
|
"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/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": "^30.2.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"
|
|
]
|
|
}
|
|
}
|