mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
Tests cover promptLanguageInstruction, promptSchemaExample, renderPromptTemplate, and buildPrompts edge cases including auto language, truncation markers, custom prompt variable substitution, card count normalization, and fallback behavior. Change-Id: I75d5b354df15456ddbd08d9d21846f74d6b6cea3
22 lines
1.3 KiB
JSON
22 lines
1.3 KiB
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/anchor.test.js && node tests/schema.test.js && node tests/cache.test.js && node tests/cards-nav.test.js && node tests/markdown.test.js && node tests/vault-batch.test.js && node tests/i18n.test.js && node tests/scroll.test.js && node tests/settings.test.js && node tests/providers.test.js && node tests/streaming.test.js && node tests/cli.test.js && node tests/direct-prompt.test.js && node tests/direct-cache.test.js && node tests/direct-providers.test.js && node tests/direct-settings.test.js && node tests/direct-i18n.test.js && node tests/direct-streaming.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"
|
|
}
|
|
}
|