This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/react-wavify/package.json
2025-02-22 20:12:27 +03:00

59 lines
2.2 KiB
JSON

{
"name": "react-wavify",
"version": "1.11.1",
"description": "Animated wave component for React",
"main": "lib/index.js",
"module": "lib/index.module.js",
"sideEffects": false,
"src": "src/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"License.txt",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/woofers/react-wavify.git"
},
"keywords": [
"react",
"reactjs",
"component",
"svg",
"animation",
"wave"
],
"browserslist": [
"defaults",
"not IE 11"
],
"author": "Jaxson Van Doorn <jaxson.vandoorn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/woofers/react-wavify/issues"
},
"homepage": "https://github.com/woofers/react-wavify#readme",
"peerDependencies": {
"react": "^0.13.0 || ^0.14.0 || >=15"
},
"devDependencies": {
"microbundle": "^0.15.1",
"rimraf": "^5.0.7"
},
"dependencies": {},
"scripts": {
"start": "pnpm watch",
"build:module": "microbundle --no-pkg-main --no-sourcemap --no-generateTypes --jsx React.createElement --define __isDev__=false -i src/index.js -o lib/react-wavify.module.js -f es",
"build:umd": "microbundle --no-pkg-main --no-sourcemap --no-generateTypes --jsx React.createElement --define __isDev__=false -i src/index.js -o lib/react-wavify.js -f umd",
"build:dev:module": "microbundle --no-pkg-main --no-sourcemap --no-generateTypes --jsx React.createElement --define __isDev__=true -i src/index.js -o lib/react-wavify.module.dev.js -f es",
"build:dev:umd": "microbundle --no-pkg-main --no-sourcemap --no-generateTypes --jsx React.createElement --define __isDev__=true -i src/index.js -o lib/react-wavify.dev.js -f umd",
"build:types": "cp src/index.d.ts lib/index.d.ts",
"clean": "rimraf lib/react-wavify.dev.js lib/react-wavify.js lib/react-wavify.module.dev.js lib/react-wavify.module.js lib/index.d.ts",
"build": "pnpm build:dev:module && yarn build:dev:umd && yarn build:module && yarn build:umd && yarn build:types",
"watch": "rollup -c --watch",
"test": "echo \"No tests \" && exit 0",
"package": "pnpm publish --no-git-checks --access public"
}
}