@alekstar79/context-menu 2.0.0 → 2.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 +1 -1
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  > The project includes full TypeScript support (types are exported) and provides a simple API for controlling the menu (show/hide, event subscription).
12
12
  > The library is lightweight, has no required dependencies (Vue 3 is optional), and can be easily integrated into existing projects.
13
13
 
14
- ![slider](menu.svg)
14
+ ![slider](./menu.svg)
15
15
 
16
16
  **[View Live Demo](https://alekstar79.github.io/context-menu)**
17
17
 
package/package.json CHANGED
@@ -1,13 +1,21 @@
1
1
  {
2
2
  "name": "@alekstar79/context-menu",
3
3
  "description": "Context Menu TS is a customizable radial context menu for web applications, written in TypeScript.",
4
- "version": "2.0.0",
4
+ "version": "2.0.2",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "author": "Aleksey Tarasenko <alekstar79@yandex.ru>",
8
8
  "main": "lib/context-menu.js",
9
9
  "module": "lib/context-menu.js",
10
10
  "types": "lib/index.d.ts",
11
+ "homepage": "https://github.com/alekstar79/context-menu.git",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/alekstar79/context-menu.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/alekstar79/context-menu/issues"
18
+ },
11
19
  "exports": {
12
20
  ".": {
13
21
  "import": "./lib/context-menu.js",