d-eniz_jupymd/package.json

56 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2025-02-22 21:22:46 +00:00
{
"name": "jupymd",
2026-04-16 11:39:48 +00:00
"version": "1.7.0",
"description": "Use Jupyter notebooks in Obsidian.",
2025-02-22 21:22:46 +00:00
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"watch": "tsc -w -p .",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky"
2025-02-22 21:22:46 +00:00
},
"keywords": [
"obsidian",
"jupyter",
"jupytext",
"markdown",
"sync"
],
"author": "Deniz Terzioglu",
2025-02-22 21:22:46 +00:00
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^18.0.0",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.5",
"@types/react-syntax-highlighter": "^15.5.13",
2025-02-22 21:22:46 +00:00
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.25.2",
"esbuild-plugin-svgr": "^3.1.1",
"husky": "^9.1.7",
2025-02-22 21:22:46 +00:00
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.9.5"
},
"dependencies": {
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@types/prismjs": "^1.26.5",
"@uiw/react-codemirror": "^4.23.12",
"highlight.js": "^11.11.1",
"lodash.debounce": "^4.0.8",
"nanoid": "^5.1.5",
"prismjs": "^1.30.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
2026-03-20 14:26:22 +00:00
"react-syntax-highlighter": "^16.1.1",
"yaml": "^2.7.0"
2025-02-22 21:22:46 +00:00
}
}