@jepepa/like-button 0.8.0

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 ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@jepepa/like-button",
3
+ "version": "0.8.0",
4
+ "description": "Animated like button with liquid fill and particle effects",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js"
13
+ },
14
+ "./vanilla": {
15
+ "types": "./dist/vanilla.d.ts",
16
+ "import": "./dist/vanilla.js"
17
+ }
18
+ },
19
+ "files": [
20
+ "dist"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "dev": "tsup --watch",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
27
+ "test:coverage": "vitest run --coverage",
28
+ "typecheck": "tsc --noEmit",
29
+ "format": "biome format --write .",
30
+ "format:check": "biome format .",
31
+ "lint": "biome lint .",
32
+ "lint:fix": "biome lint --write .",
33
+ "check": "biome check --write .",
34
+ "ci": "biome ci .",
35
+ "prepublishOnly": "pnpm run ci && pnpm run typecheck && pnpm run test && pnpm run build"
36
+ },
37
+ "devDependencies": {
38
+ "@biomejs/biome": "2.3.10",
39
+ "@testing-library/jest-dom": "^6.6.3",
40
+ "@testing-library/react": "^16.3.0",
41
+ "@types/react": "^19.2.7",
42
+ "@types/react-dom": "^19.2.3",
43
+ "@vitejs/plugin-react": "^4.4.1",
44
+ "jsdom": "^26.1.0",
45
+ "react": "^19.2.3",
46
+ "react-dom": "^19.2.3",
47
+ "tsup": "^8.5.0",
48
+ "typescript": "^5.8.3",
49
+ "vitest": "^3.2.3"
50
+ },
51
+ "keywords": [
52
+ "react",
53
+ "like-button",
54
+ "animation",
55
+ "particles",
56
+ "liquid-fill",
57
+ "brutalist",
58
+ "tailwind"
59
+ ],
60
+ "author": "Jepepa",
61
+ "license": "MIT",
62
+ "repository": {
63
+ "type": "git",
64
+ "url": "git+https://github.com/ChickenVacuum/react-multi-like-button.git"
65
+ },
66
+ "homepage": "https://github.com/ChickenVacuum/react-multi-like-button#readme",
67
+ "bugs": {
68
+ "url": "https://github.com/ChickenVacuum/react-multi-like-button/issues"
69
+ },
70
+ "peerDependencies": {
71
+ "react": "^19.0.0",
72
+ "react-dom": "^19.0.0"
73
+ }
74
+ }