mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 17:20:24 +00:00
Add tests/**/*.js and scripts/**/*.mjs to biome.json includes and update npm lint scripts to cover these directories. Auto-fixed all formatting issues in 26 files. Change-Id: I8c2763cb9683616a8abc1484d91bf8af79bb590e
23 lines
720 B
JSON
23 lines
720 B
JSON
{
|
|
"name": "obsidian-parallel-reader",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs production",
|
|
"dev": "node esbuild.config.mjs watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "biome check main.ts src/ tests/ scripts/",
|
|
"lint:fix": "biome check --write main.ts src/ tests/ scripts/",
|
|
"version": "node scripts/bump-version.mjs",
|
|
"test": "npm run build && npm run typecheck && node scripts/run-tests.mjs",
|
|
"test:only": "node scripts/run-tests.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.13",
|
|
"@types/node": "^22.10.2",
|
|
"esbuild": "^0.24.2",
|
|
"obsidian": "^1.7.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|