-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 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
{
"name": "@charmingdc/scrolljs",
"version": "2.0.1",
"description": "A lightweight JavaScript library for observing scroll-based events and triggering animations.",
"main": "dist/scroll.umd.js",
"module": "dist/scroll.esm.js",
"exports": {
"require": "./dist/scroll.umd.js",
"import": "./dist/scroll.esm.js"
},
"scripts": {
"build": "rollup -c"
},
"files": [
"dist",
"dist/scrolljs.css",
"README.md"
],
"keywords": [
"scroll",
"observer",
"scroll trigger",
"animations",
"scroll animation",
"animate on scroll",
"viewport animations",
"on scroll animations",
"intersection observer",
"css",
"javascript",
"scroll effects",
"library",
"aos alternative",
"lightweight animation library"
],
"author": "Charmingdc",
"license": "MIT",
"homepage": "https://scrolljs.vercel.app",
"repository": {
"type": "git",
"url": "https://github.com/Charmingdc/ScrollJs.git"
},
"bugs": {
"url": "https://github.com/Charmingdc/ScrollJs/issues"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"rollup": "^3.0.0",
"rollup-plugin-copy": "^3.5.0"
}
}