@excalidraw-modify/element 0.18.0-8b71db27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -0
- package/dist/dev/index.js +21148 -0
- package/dist/dev/index.js.map +7 -0
- package/dist/prod/index.js +27 -0
- package/package.json +63 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @excalidraw-modify/element
|
|
2
|
+
|
|
3
|
+
## Install
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install @excalidraw-modify/element
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
If you prefer Yarn over npm, use this command to install the Excalidraw utils package:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
yarn add @excalidraw-modify/element
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
With PNPM, similarly install the package with this command:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pnpm add @excalidraw-modify/element
|
|
19
|
+
```
|