UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

96 lines (95 loc) 3.09 kB
{ "name": "vevet", "version": "5.0.1", "description": "Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.", "scripts": { "storybook": "storybook dev -p 6006", "lint": "npm run lint:js", "lint:js": "eslint . --ext .jsx,.js,.tsx,.ts", "build": "run-s build:lib build:docs", "build:lib": "rimraf lib && run-s build:esm build:cjs build:types build:styles", "build:esm": "tsc -p config/tsconfig.esm.json && tsc-alias -p config/tsconfig.esm.json", "build:cjs": "tsc -p config/tsconfig.cjs.json && tsc-alias -p config/tsconfig.cjs.json", "build:types": "tsc -p config/tsconfig.types.json && tsc-alias -p config/tsconfig.types.json", "build:styles": "copyfiles src/styles/**/*.scss lib/styles -u 2", "build:docs": "rimraf docs && typedoc --out docusaurus/static/v5 ./src --theme default --hideGenerator --includeVersion && cd docusaurus && npm run build && cd ..", "version": "node ./config/version.js && git add ./src/version.ts && git commit -m \"Update version\"", "deploy": "gh-pages -d docusaurus/build", "prepublishOnly": "run-s lint build deploy" }, "main": "./lib/cjs/index.js", "types": "./lib/types/index.d.ts", "module": "./lib/esm/index.js", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/antonbobrov/vevet.git" }, "keywords": [ "creative", "responsive", "interactive", "animations", "canvas", "prerendering", "cursor", "viewport", "intersection", "marquee", "pointer-events", "preloader", "raf", "scroll-progress", "carousel", "snap", "split-text", "swipe", "timeline", "os-detection", "browser-detection", "viewport-units", "scrollbar" ], "files": [ "lib", "src" ], "author": "Anton Bobrov <anton.bobrov@hotmail.com>", "license": "MIT", "dependencies": { "detect-browser": "^5.3.0", "easing-progress": "^1.0.0", "get-image-pos": "^0.0.11", "ismobilejs": "^1.1.1", "lodash.split": "^4.4.2", "normalize-wheel": "^1.0.1" }, "devDependencies": { "@anton.bobrov/eslint-config": "2.0.5", "@chromatic-com/storybook": "^3.2.4", "@storybook/addon-essentials": "^8.6.0", "@storybook/addon-interactions": "^8.6.0", "@storybook/addon-onboarding": "^8.6.0", "@storybook/blocks": "^8.6.0", "@storybook/react": "^8.6.0", "@storybook/react-vite": "^8.6.0", "@storybook/test": "^8.6.0", "@types/lodash.split": "^4.4.9", "@types/node": "^22.13.5", "@types/normalize-wheel": "^1.0.1", "@types/react": "18.3.1", "copyfiles": "^2.4.1", "eslint": "8.56.0", "eslint-plugin-storybook": "^0.6.13", "gh-pages": "^6.3.0", "npm-run-all": "^4.1.5", "prettier": "3.3.3", "react": "^18.3.1", "react-dom": "^18.3.1", "rimraf": "^6.0.1", "storybook": "^8.6.0", "tsc-alias": "^1.8.7", "typedoc": "^0.27.9", "typescript": "5.7.3" } }