-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "lenticular-fx",
"version": "1.0.0",
"description": "Animated lenticular print effect for React",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.js"
}
}
},
"files": ["dist"],
"sideEffects": false,
"scripts": {
"dev": "vite --config demo/vite.config.ts",
"build": "vite build",
"build:demo": "vite build --config demo/vite.config.ts",
"typecheck": "tsc --noEmit",
"preview": "vite preview --config demo/vite.config.ts",
"prepublishOnly": "bun run build"
},
"packageManager": "bun@1.1.0",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.7.0"
},
"keywords": [
"react",
"react-component",
"lenticular",
"lenticular-print",
"animation",
"effect",
"css",
"clip-path",
"parallax",
"hover",
"reveal",
"3d-tilt",
"perspective",
"holographic",
"trading-card",
"interactive",
"motion",
"ui",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/subhadeeproy3902/lenticular.git"
},
"bugs": {
"url": "https://github.com/subhadeeproy3902/lenticular/issues"
},
"author": {
"name": "Subhadeep Roy",
"url": "https://x.com/mvp_Subha"
},
"contributors": [
{
"name": "Subhadeep Roy",
"url": "https://x.com/mvp_Subha"
},
{
"name": "Claude",
"url": "https://claude.com"
}
],
"homepage": "https://github.com/subhadeeproy3902/lenticular#readme"
}