mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
Install @biomejs/biome with lint and format config. Add npm lint/lint:fix scripts. Auto-fix formatting across all source files. Update tsconfig lib to ES2022 for Object.hasOwn support. Change-Id: I13e3ba2f106f7e3d03349080b7ed515d427d24a1
21 lines
635 B
JSON
21 lines
635 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/",
|
|
"lint:fix": "biome check --write main.ts src/",
|
|
"test": "npm run build && npm run typecheck && node tests/main.test.js && node tests/generation-job-manager.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.13",
|
|
"@types/node": "^22.10.2",
|
|
"esbuild": "^0.24.2",
|
|
"obsidian": "^1.7.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|