@proto-cool/cascade
Version:
A lightweight TypeScript library for easily defining smooth, performant animations when elements enter the viewport.
70 lines • 1.41 kB
JSON
{
"name": "@proto-cool/cascade",
"author": "protocol7",
"version": "1.0.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/proto-cool/cascade.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
},
"./cascade.css": "./dist/cascade.css",
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"bracketSameLine": false,
"tabWidth": 4
},
"dependencies": {
"motion": "^12.17.0"
},
"devDependencies": {
"rollup-plugin-typescript2": "^0.36.0",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"rollup-plugin-delete": "^3.0.1"
},
"keywords": [
"animation",
"scroll",
"intersection-observer",
"motion",
"viewport",
"reveal",
"inview",
"css-animation",
"data-attributes",
"scroll-animation",
"emerge",
"fade-in",
"cascade",
"automatic",
"no-config",
"vanilla-js"
],
"scripts": {
"build": "rollup -c",
"format": "prettier --write ."
}
}