@fmarlats/react-like-button 1.1.4 → 1.1.5
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 +27 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fmarlats/react-like-button",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Animated React like button component with configurable multi clicks to fill the button, particle animations on click, all customizable. Supports Tailwind CSS and vanilla CSS. TypeScript-ready and accessible.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -26,34 +26,21 @@
|
|
|
26
26
|
"sideEffects": [
|
|
27
27
|
"*.css"
|
|
28
28
|
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "tsup && node scripts/build-css.js",
|
|
31
|
-
"dev": "tsup --watch",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"test:watch": "vitest",
|
|
34
|
-
"test:coverage": "vitest run --coverage",
|
|
35
|
-
"typecheck": "tsc --noEmit",
|
|
36
|
-
"format": "biome format --write .",
|
|
37
|
-
"format:check": "biome format .",
|
|
38
|
-
"lint": "biome lint .",
|
|
39
|
-
"lint:fix": "biome lint --write .",
|
|
40
|
-
"check": "biome check --write .",
|
|
41
|
-
"ci": "biome ci .",
|
|
42
|
-
"prepublishOnly": "pnpm run ci && pnpm run typecheck && pnpm run test && pnpm run build"
|
|
43
|
-
},
|
|
44
29
|
"devDependencies": {
|
|
45
|
-
"@biomejs/biome": "2.
|
|
30
|
+
"@biomejs/biome": "2.4.15",
|
|
46
31
|
"@testing-library/jest-dom": "^6.6.3",
|
|
47
|
-
"@testing-library/react": "^16.3.
|
|
48
|
-
"@types/react": "^19.2.
|
|
32
|
+
"@testing-library/react": "^16.3.2",
|
|
33
|
+
"@types/react": "^19.2.15",
|
|
49
34
|
"@types/react-dom": "^19.2.3",
|
|
50
|
-
"@vitejs/plugin-react": "^
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"react
|
|
35
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
36
|
+
"@vitest/coverage-v8": "^4.1.7",
|
|
37
|
+
"jsdom": "^29.1.1",
|
|
38
|
+
"react": "^19.2.6",
|
|
39
|
+
"react-dom": "^19.2.6",
|
|
54
40
|
"tsup": "^8.5.0",
|
|
55
|
-
"typescript": "^
|
|
56
|
-
"
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"vite": "^8.0.14",
|
|
43
|
+
"vitest": "^4.1.7"
|
|
57
44
|
},
|
|
58
45
|
"keywords": [
|
|
59
46
|
"react",
|
|
@@ -105,5 +92,19 @@
|
|
|
105
92
|
"peerDependencies": {
|
|
106
93
|
"react": "^18.0.0 || ^19.0.0",
|
|
107
94
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
95
|
+
},
|
|
96
|
+
"scripts": {
|
|
97
|
+
"build": "tsup && node scripts/build-css.js",
|
|
98
|
+
"dev": "tsup --watch",
|
|
99
|
+
"test": "vitest run",
|
|
100
|
+
"test:watch": "vitest",
|
|
101
|
+
"test:coverage": "vitest run --coverage",
|
|
102
|
+
"typecheck": "tsc --noEmit",
|
|
103
|
+
"format": "biome format --write .",
|
|
104
|
+
"format:check": "biome format .",
|
|
105
|
+
"lint": "biome lint .",
|
|
106
|
+
"lint:fix": "biome lint --write .",
|
|
107
|
+
"check": "biome check --write .",
|
|
108
|
+
"ci": "biome ci ."
|
|
108
109
|
}
|
|
109
|
-
}
|
|
110
|
+
}
|