-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "gsap-react-queue",
"version": "1.0.4",
"description": "Tools for orchestrating GSAP animations in React nested components, solving the timing trap where children animate before parents by queuing and sequencing with useGSAPQueue()",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./types/index.d.ts",
"keywords": [
"react",
"gsap",
"usegsap",
"animation",
"greensock",
"javascript",
"queue",
"timeline",
"sequence",
"nested",
"orchestration"
],
"files": [
"src",
"dist",
"types",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/andreeich/gsap-react-queue.git"
},
"author": "andreeich",
"license": "MIT",
"peerDependencies": {
"@gsap/react": "^2.1.2",
"gsap": "^3.12.5",
"react": ">=17"
},
"scripts": {
"build": "vite build",
"clean": "rm -rf dist"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.2",
"vite": "^7.3.1"
},
"bugs": {
"url": "https://github.com/andreeich/gsap-react-queue/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/andreeich/gsap-react-queue#readme"
}