mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
68 lines
2.3 KiB
JSON
68 lines
2.3 KiB
JSON
{
|
|
"name": "obsidian-excalidraw-plugin",
|
|
"version": "1.6.29",
|
|
"description": "This is an Obsidian.md plugin that lets you view and edit Excalidraw drawings",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js -w",
|
|
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js && terser main.js --compress toplevel=true,passes=2 --output main.js",
|
|
"lib": "cross-env NODE_ENV=lib rollup --config rollup.config.js -w",
|
|
"code:fix": "eslint --max-warnings=0 --ext .ts,.tsx ./src --fix"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@zsviczian/excalidraw": "0.11.0-obsidian-20",
|
|
"monkey-around": "^2.3.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-scripts": "^5.0.0",
|
|
"roughjs": "^4.5.2",
|
|
"lz-string": "^1.4.4",
|
|
"@types/lz-string": "^1.3.34",
|
|
"clsx": "1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.16.12",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@rollup/plugin-babel": "^5.3.0",
|
|
"@rollup/plugin-commonjs": "^21.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
"@rollup/plugin-replace": "^3.0.1",
|
|
"@rollup/plugin-typescript": "^8.3.0",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"rollup-plugin-web-worker-loader": "^1.6.1",
|
|
"@types/js-beautify": "^1.13.3",
|
|
"@types/node": "^15.12.4",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
"@popperjs/core": "^2.11.2",
|
|
"cross-env": "^7.0.3",
|
|
"html2canvas": "^1.4.0",
|
|
"nanoid": "^3.1.31",
|
|
"obsidian": "^0.14.6",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-visualizer": "^5.6.0",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.5.5",
|
|
"ttypescript": "^1.5.13",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"prettier": "^2.5.1",
|
|
"@excalidraw/eslint-config": "1.0.0",
|
|
"@excalidraw/prettier-config": "1.0.2"
|
|
},
|
|
"resolutions": {
|
|
"@typescript-eslint/typescript-estree": "5.3.0"
|
|
},
|
|
"prettier": "@excalidraw/prettier-config"
|
|
}
|