@tuel/scroll
Version:
Advanced scroll-triggered animations and effects for React.
86 lines (85 loc) • 1.81 kB
JSON
{
"name": "@tuel/scroll",
"version": "1.1.2",
"description": "Advanced scroll-triggered animations and effects for React.",
"license": "MIT",
"author": "Omer Akben <contact@tuel.ai>",
"repository": {
"type": "git",
"url": "https://github.com/omerakben/tuel.git",
"directory": "packages/scroll"
},
"bugs": {
"url": "https://github.com/omerakben/tuel/issues"
},
"homepage": "https://tuel.ai/docs/scroll",
"keywords": [
"react",
"animation",
"scroll",
"parallax",
"reveal",
"intersection-observer"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist .turbo",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@tuel/utils": "^1.1.2",
"@tuel/performance": "^1.1.2"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18",
"framer-motion": ">=10.0.0",
"gsap": ">=3.12.0",
"three": ">=0.160.0",
"lenis": ">=1.0.0"
},
"peerDependenciesMeta": {
"framer-motion": {
"optional": true
},
"gsap": {
"optional": true
},
"three": {
"optional": true
},
"lenis": {
"optional": true
}
},
"devDependencies": {
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.170.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"tsup": "^8.0.1",
"typescript": "^5"
},
"publishConfig": {
"access": "public"
}
}