mirror of
https://github.com/anthonyfitzpatrick/manuscript-compiler.git
synced 2026-07-22 08:31:19 +00:00
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"name": "obsidian-manuscript-compiler",
|
|
"version": "0.9.2",
|
|
"description": "Validate, preview, and compile Obsidian book manuscripts to Markdown or DOCX.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"typecheck": "tsc -noEmit -skipLibCheck",
|
|
"test": "node esbuild.test.mjs",
|
|
"test:safe-writer": "node esbuild.safe-writer-test.mjs",
|
|
"test:docx": "node esbuild.docx-test.mjs",
|
|
"benchmark:large": "node esbuild.benchmark.mjs",
|
|
"package": "npm run typecheck && npm test && npm run test:safe-writer && npm run test:docx && npm run build && node scripts/package.mjs",
|
|
"package:validate": "node scripts/package.mjs --validate"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"manuscript",
|
|
"markdown",
|
|
"docx",
|
|
"publishing"
|
|
],
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"esbuild": "^0.28.1",
|
|
"obsidian": "^1.8.7",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"fflate": "^0.8.3"
|
|
}
|
|
}
|