mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 17:20:24 +00:00
26 lines
960 B
JSON
26 lines
960 B
JSON
{
|
|
"name": "obsidian-parallel-reader",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"build": "node esbuild.config.mjs production",
|
|
"check:build-artifacts": "node scripts/check-build-artifacts.mjs",
|
|
"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 && node tests/modules.test.js && node tests/direct-modules.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.13",
|
|
"@types/node": "^22.10.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.59.0",
|
|
"@typescript-eslint/parser": "^8.59.0",
|
|
"esbuild": "^0.24.2",
|
|
"eslint": "^10.2.1",
|
|
"eslint-plugin-obsidianmd": "github:obsidianmd/eslint-plugin",
|
|
"obsidian": "^1.7.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|