mirror of
https://github.com/d-eniz/jupymd.git
synced 2026-07-22 12:40:29 +00:00
31 lines
817 B
JSON
31 lines
817 B
JSON
{
|
|
"name": "jupytext-obsidian-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Sync Obsidian Markdown notes with Jupyter Notebooks using Jupytext.",
|
|
"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"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"jupyter",
|
|
"jupytext",
|
|
"markdown",
|
|
"sync"
|
|
],
|
|
"author": "Your Name <your.email@example.com>",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.9.5"
|
|
}
|
|
}
|