canvico-editor 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  [![NPM Version](https://img.shields.io/npm/v/canvico-editor.svg)](https://www.npmjs.com/package/canvico-editor)
4
4
 
5
- A simple and extensible image editor built with TypeScript and the Canvas API. Designed with modularity and developer experience in mind, it separates DOM logic from business logic, provides strong typing, and includes robust error handling. Easily integrable into web projects and a showcase of advanced TypeScript patterns.
5
+ A simple and extensible image editor built with TypeScript and the Canvas API. Designed with modularity and developer experience in mind, it separates DOM logic from business logic, provides strong typing, and includes robust error handling. Easily integrable into web projects.
6
6
 
7
7
  ## Features
8
8
 
9
- - **Image Loading**: Load images from a local file input, URL, or `File` object.
9
+ - **Image Loading**: Load images from a local file input.
10
10
  - **Resizing**: Dynamically resize the image with an option to keep the aspect ratio.
11
11
  - **Cropping**: User-friendly crop tool with a movable and resizable selection box.
12
12
  - **Saving**: Download the edited image as a PNG file.
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "canvico-editor",
3
- "description": "A simple and extensible image editor built with TypeScript and the Canvas API. Designed with modularity and developer experience in mind, it separates DOM logic from business logic, provides strong typing, and includes robust error handling. Easily integrable into web projects and a showcase of advanced TypeScript patterns.",
3
+ "description": "A simple and extensible image editor built with TypeScript and the Canvas API. Designed with modularity and developer experience in mind, it separates DOM logic from business logic, provides strong typing, and includes robust error handling. Easily integrable into web projects.",
4
4
  "private": false,
5
- "version": "1.0.1",
5
+ "version": "1.0.2",
6
6
  "type": "module",
7
7
  "types": "dist/index.d.ts",
8
8
  "exports": {