mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
53 lines
1.7 KiB
JSON
53 lines
1.7 KiB
JSON
{
|
|
"name": "obsidian-excalidraw-plugin",
|
|
"version": "1.3.21",
|
|
"description": "This is an Obsidian.md plugin that lets you view and edit Excalidraw drawings",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js -w",
|
|
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js",
|
|
"code:fix": "eslint --max-warnings=0 --ext .ts,.tsx ./src --fix"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@zsviczian/excalidraw": "0.10.0-obsidian-33",
|
|
"monkey-around": "^2.2.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "^1.1.5",
|
|
"roughjs": "4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.15.5",
|
|
"@babel/preset-env": "^7.15.6",
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.0",
|
|
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
"@rollup/plugin-replace": "^2.4.2",
|
|
"@rollup/plugin-typescript": "^8.2.5",
|
|
"@types/js-beautify": "^1.13.3",
|
|
"@types/node": "^15.12.4",
|
|
"@types/react-dom": "^17.0.9",
|
|
"cross-env": "^7.0.3",
|
|
"html2canvas": "^1.3.2",
|
|
"nanoid": "^3.1.23",
|
|
"obsidian": "^0.13.11",
|
|
"rollup": "^2.52.3",
|
|
"rollup-plugin-visualizer": "^5.5.2",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.4.3",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "3.3.1",
|
|
"prettier": "2.5.0",
|
|
"@excalidraw/eslint-config": "1.0.0",
|
|
"@excalidraw/prettier-config": "1.0.2"
|
|
},
|
|
"resolutions": {
|
|
"@typescript-eslint/typescript-estree": "5.3.0"
|
|
},
|
|
"prettier": "@excalidraw/prettier-config"
|
|
}
|