-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (74 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (74 loc) · 2.2 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
{
"name": "gsap",
"version": "3.14.2",
"description": "GSAP is a robust JavaScript toolset that turns developers into animation superheroes. Build high-performance animations that work in **every** major browser. Animate CSS, SVG, canvas, React, Vue, WebGL, colors, strings, motion paths, generic objects...anything JavaScript can touch! The ScrollTrigger plugin lets you create jaw-dropping scroll-based animations with minimal code. No other library delivers such advanced sequencing, reliability, and tight control while solving real-world problems on millions of sites. GSAP works around countless browser inconsistencies; your animations **just work**. At its core, GSAP is a high-speed property manipulator, updating values over time with extreme accuracy. It's up to 20x faster than jQuery!",
"homepage": "https://gsap.com",
"module": "esm/index.js",
"main": "dist/gsap.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./dist/gsap.js",
"types": "./types/index.d.ts",
"default": "./esm/index.js"
},
"./dist/*.js": "./dist/*.js",
"./dist/*": "./dist/*.js",
"./*.js": {
"import": "./esm/*.js",
"require": "./dist/*.js",
"types": "./types/*.d.ts",
"default": "./esm/*.js"
},
"./*": {
"import": "./esm/*.js",
"require": "./dist/*.js",
"types": "./types/*.d.ts",
"default": "./esm/*.js"
},
"./types/*": "./types/*",
"./package.json": "./package.json"
},
"filename": "gsap.min.js",
"sideEffects": false,
"keywords": [
"GSAP",
"GreenSock",
"animation",
"MotionPathPlugin",
"motion",
"motionPath",
"ScrollTrigger",
"ScrollSmoother",
"Observer",
"easing",
"JavaScript",
"PixiPlugin",
"CustomEase",
"Flip",
"SVG",
"3D",
"2D",
"transform",
"morph",
"morphing",
"tweening",
"Webflow"
],
"maintainers": [
{
"name": "Jack Doyle",
"email": "jack@greensock.com",
"web": "https://gsap.com"
}
],
"license": "Standard 'no charge' license: https://gsap.com/standard-license.",
"bugs": {
"url": "https://gsap.com/community/"
},
"repository": {
"type": "git",
"url": "https://github.com/greensock/GSAP"
}
}