youfoundjk_TeXcore/package.json

34 lines
1.2 KiB
JSON

{
"name": "obsidian-math-booster",
"version": "2.2.0",
"description": "An Obsidian.md plugin that provides a powerful indexing & referencing system for theorems & equations in your vault. Bring LaTeX-like workflow into Obsidian with theorem environments, automatic equation numbering, and more.",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && sass styles.scss styles.css",
"prod": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev-style": "sass --watch styles.scss styles.css",
"build-style": "sass --watch styles.scss styles.css",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Ryota Ushio",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/language": "^6.0.0",
"@lezer/common": "^1.0.3",
"esbuild": "^0.25.12",
"esbuild-plugin-inline-worker": "^0.1.1",
"flatqueue": "^2.0.3",
"monkey-around": "^2.3.0",
"sorted-btree": "^1.8.1"
}
}