@rehover/icons 0.1.0-beta.1

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,66 @@
1
+ {
2
+ "name": "@rehover/icons",
3
+ "version": "0.1.0-beta.1",
4
+ "private": false,
5
+ "description": "Animated icons for every framework",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "rehover": "dist/cli/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "keywords": [
14
+ "icons",
15
+ "animated",
16
+ "react",
17
+ "vue"
18
+ ],
19
+ "author": "Zammad Nasir",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/rehover/icons.git"
24
+ },
25
+ "scripts": {
26
+ "generate": "tsx scripts/generate-registry.ts",
27
+ "predev": "npm run generate",
28
+ "dev": "next dev",
29
+ "prebuild": "npm run generate",
30
+ "build": "next build",
31
+ "build:cli": "tsx scripts/build-cli.ts",
32
+ "start": "next start",
33
+ "lint": "eslint",
34
+ "type-check": "tsc --noEmit",
35
+ "test": "tsx scripts/check-animation-parity.ts",
36
+ "test:update": "tsx scripts/check-animation-parity.ts --update",
37
+ "create-icon": "tsx scripts/create-icon.ts",
38
+ "prepublishOnly": "npm run build:cli"
39
+ },
40
+ "engines": {
41
+ "node": ">=18"
42
+ },
43
+ "dependencies": {
44
+ "clsx": "^2.1.1",
45
+ "lucide-react": "^1.22.0",
46
+ "motion": "^12.42.0",
47
+ "next": "16.2.9",
48
+ "next-themes": "^0.4.6",
49
+ "react": "19.2.4",
50
+ "react-dom": "19.2.4",
51
+ "tailwind-merge": "^3.6.0"
52
+ },
53
+ "devDependencies": {
54
+ "@tailwindcss/postcss": "^4",
55
+ "@types/node": "^20",
56
+ "@types/react": "^19",
57
+ "@types/react-dom": "^19",
58
+ "esbuild": "^0.28.1",
59
+ "eslint": "^9",
60
+ "eslint-config-next": "16.2.9",
61
+ "tailwindcss": "^4",
62
+ "ts-node": "^10.9.2",
63
+ "tsx": "^4.22.4",
64
+ "typescript": "^5"
65
+ }
66
+ }