mirror of
https://github.com/land0r/obsidian-flowchart-plugin.git
synced 2026-07-22 05:32:04 +00:00
41 lines
1 KiB
JSON
41 lines
1 KiB
JSON
{
|
|
"name": "obsidian-flowchart-plugin",
|
|
"version": "1.0.0",
|
|
"description": "A plugin for rendering flowcharts using flowchart.js",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint '**/*.ts'",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"plugin",
|
|
"flowchart",
|
|
"typescript",
|
|
"visualization"
|
|
],
|
|
"author": "land0r",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"esbuild": "0.17.3",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"obsidian": "latest",
|
|
"prettier": "^3.3.3",
|
|
"ts-jest": "^29.2.5",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
},
|
|
"dependencies": {
|
|
"flowchart.js": "^1.18.0"
|
|
}
|
|
}
|