2025-02-22 21:22:46 +00:00
|
|
|
{
|
2025-03-31 18:01:39 +00:00
|
|
|
"name": "jupymd",
|
2026-04-16 11:39:48 +00:00
|
|
|
"version": "1.7.0",
|
2026-03-21 10:52:05 +00:00
|
|
|
"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",
|
2025-02-22 22:05:11 +00:00
|
|
|
"watch": "tsc -w -p .",
|
2026-04-10 14:45:40 +00:00
|
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
|
|
|
"prepare": "husky"
|
2025-02-22 21:22:46 +00:00
|
|
|
},
|
2025-02-22 22:05:11 +00:00
|
|
|
"keywords": [
|
|
|
|
|
"obsidian",
|
|
|
|
|
"jupyter",
|
|
|
|
|
"jupytext",
|
|
|
|
|
"markdown",
|
|
|
|
|
"sync"
|
|
|
|
|
],
|
2025-03-31 18:01:39 +00:00
|
|
|
"author": "Deniz Terzioglu",
|
2025-02-22 21:22:46 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"devDependencies": {
|
2026-04-10 14:45:40 +00:00
|
|
|
"@commitlint/cli": "^20.5.0",
|
|
|
|
|
"@commitlint/config-conventional": "^20.5.0",
|
2025-06-08 23:04:45 +00:00
|
|
|
"@types/lodash.debounce": "^4.0.9",
|
2025-02-22 22:05:11 +00:00
|
|
|
"@types/node": "^18.0.0",
|
2025-05-27 21:54:03 +00:00
|
|
|
"@types/react": "^19.1.6",
|
|
|
|
|
"@types/react-dom": "^19.1.5",
|
2025-06-08 23:04:45 +00:00
|
|
|
"@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",
|
2025-05-27 21:54:03 +00:00
|
|
|
"esbuild": "^0.25.2",
|
|
|
|
|
"esbuild-plugin-svgr": "^3.1.1",
|
2026-04-10 14:45:40 +00:00
|
|
|
"husky": "^9.1.7",
|
2025-02-22 21:22:46 +00:00
|
|
|
"obsidian": "latest",
|
|
|
|
|
"tslib": "2.4.0",
|
2025-02-22 22:05:11 +00:00
|
|
|
"typescript": "4.9.5"
|
2025-02-22 22:21:32 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-06-08 23:04:45 +00:00
|
|
|
"@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",
|
2025-04-22 10:01:58 +00:00
|
|
|
"highlight.js": "^11.11.1",
|
2025-06-08 23:04:45 +00:00
|
|
|
"lodash.debounce": "^4.0.8",
|
|
|
|
|
"nanoid": "^5.1.5",
|
|
|
|
|
"prismjs": "^1.30.0",
|
2025-05-27 21:54:03 +00:00
|
|
|
"react": "^19.1.0",
|
|
|
|
|
"react-dom": "^19.1.0",
|
2026-03-20 14:26:22 +00:00
|
|
|
"react-syntax-highlighter": "^16.1.1",
|
2025-02-22 22:21:32 +00:00
|
|
|
"yaml": "^2.7.0"
|
2025-02-22 21:22:46 +00:00
|
|
|
}
|
|
|
|
|
}
|