mirror of
https://github.com/zsviczian/obsidian-excalidraw-plugin.git
synced 2025-08-06 05:46:28 +00:00
74 lines
2.4 KiB
JSON
74 lines
2.4 KiB
JSON
{
|
|
"name": "obsidian-excalidraw-plugin",
|
|
"version": "1.8.10",
|
|
"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",
|
|
"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": {
|
|
"@types/lz-string": "^1.3.34",
|
|
"@zsviczian/excalidraw": "0.15.2-obsidian-7",
|
|
"chroma-js": "^2.4.2",
|
|
"clsx": "^1.2.1",
|
|
"colormaster": "^1.2.1",
|
|
"gl-matrix": "^3.4.3",
|
|
"lz-string": "^1.4.4",
|
|
"monkey-around": "^2.3.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-scripts": "^5.0.1",
|
|
"roughjs": "^4.5.2",
|
|
"html2canvas": "^1.4.1",
|
|
"@popperjs/core": "^2.11.6",
|
|
"nanoid": "^4.0.0",
|
|
"lucide-react": "0.259.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.20.12",
|
|
"@babel/preset-env": "^7.20.2",
|
|
"@babel/preset-react": "^7.18.6",
|
|
"@excalidraw/eslint-config": "^1.0.3",
|
|
"@excalidraw/prettier-config": "^1.0.2",
|
|
"@rollup/plugin-babel": "^6.0.3",
|
|
"@rollup/plugin-commonjs": "^24.0.0",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
"@types/chroma-js": "^2.1.4",
|
|
"@types/js-beautify": "^1.13.3",
|
|
"@types/node": "^18.11.18",
|
|
"@types/react-dom": "^18.0.10",
|
|
"@zerollup/ts-transform-paths": "^1.7.18",
|
|
"cross-env": "^7.0.3",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"obsidian": "^1.1.1",
|
|
"prettier": "^2.8.2",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-copy": "^3.4.0",
|
|
"rollup-plugin-postprocess": "github:brettz9/rollup-plugin-postprocess#update",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
"rollup-plugin-visualizer": "^5.9.0",
|
|
"rollup-plugin-web-worker-loader": "^1.6.1",
|
|
"tslib": "^2.4.1",
|
|
"ttypescript": "^1.5.15",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"resolutions": {
|
|
"@typescript-eslint/typescript-estree": "5.3.0"
|
|
},
|
|
"prettier": "@excalidraw/prettier-config"
|
|
}
|