@erain20029/tooltips 2.0.12 → 2.0.14
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/package.json
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@erain20029/tooltips",
|
|
3
|
-
"
|
|
4
|
-
"version": "2.0.12",
|
|
3
|
+
"version": "2.0.14",
|
|
5
4
|
"description": "Universal tooltip overlay for any HTML project",
|
|
6
|
-
"
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Erik",
|
|
7
|
+
"main": "dist/tooltip-overlay.umd.cjs",
|
|
8
|
+
"module": "dist/tooltip-overlay.es.js",
|
|
7
9
|
"style": "dist/tooltip.css",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/tooltip-overlay.es.js",
|
|
13
|
+
"require": "./dist/tooltip-overlay.umd.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
8
16
|
"files": [
|
|
9
17
|
"dist"
|
|
10
18
|
],
|
|
@@ -14,32 +22,10 @@
|
|
|
14
22
|
"html",
|
|
15
23
|
"js"
|
|
16
24
|
],
|
|
17
|
-
"author": "Erik",
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"type": "module",
|
|
20
25
|
"scripts": {
|
|
21
|
-
"
|
|
22
|
-
"build": "vite build && cp src/tooltip/tooltip.css dist/tooltip.css",
|
|
23
|
-
"lint": "eslint .",
|
|
24
|
-
"preview": "vite preview"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"react": "^19.2.0",
|
|
28
|
-
"react-dom": "^19.2.0"
|
|
26
|
+
"build": "vite build && cp src/tooltip/tooltip.css dist/tooltip.css"
|
|
29
27
|
},
|
|
30
28
|
"devDependencies": {
|
|
31
|
-
"@eslint/js": "^9.39.1",
|
|
32
|
-
"@types/node": "^24.10.1",
|
|
33
|
-
"@types/react": "^19.2.5",
|
|
34
|
-
"@types/react-dom": "^19.2.3",
|
|
35
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
36
|
-
"eslint": "^9.39.1",
|
|
37
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
38
|
-
"eslint-plugin-react-refresh": "^0.4.24",
|
|
39
|
-
"globals": "^16.5.0",
|
|
40
|
-
"tailwindcss": "^3.4.19",
|
|
41
|
-
"typescript": "~5.9.3",
|
|
42
|
-
"typescript-eslint": "^8.46.4",
|
|
43
29
|
"vite": "^7.2.4"
|
|
44
30
|
}
|
|
45
31
|
}
|
|
File without changes
|