forked from andrewplummer/peel-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.85 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
{
"name": "react-peel",
"description": "A React library to create realistic peeling effects with hooks, presets, and animations. Zero external dependencies.",
"version": "2.1.0",
"scripts": {
"build": "tsup",
"lint": "eslint . --max-warnings 0",
"dev:docs": "rspress dev",
"build:docs": "rspress build",
"preview:docs": "rspress preview",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/iqbal-rashed/react-peel"
},
"keywords": [
"react-peel",
"peel.js",
"peel animation",
"react",
"react-animation",
"page peel",
"page curl",
"peel effect",
"react-effects",
"animation library",
"interactive UI",
"react-component",
"ui-animation",
"page flip",
"book effect",
"scratch card",
"reveal animation",
"react hooks"
],
"bugs": {
"url": "https://github.com/iqbal-rashed/react-peel/issues"
},
"homepage": "https://iqbal-rashed.github.io/react-peel",
"peerDependencies": {
"react": "16.8.0 || >=17.x",
"react-dom": "16.8.0 || >=17.x"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^25.0.3",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9.26.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.1.0",
"husky": "^9.1.7",
"rspress": "^1.47.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.32.0"
},
"sideEffects": false,
"author": "Iqbal Rashed",
"license": "MIT"
}