-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "framer-motion-ticker", | ||
"version": "1.0.15", | ||
"version": "1.0.16", | ||
"description": "A React component that acts like a ticker, or marquee.", | ||
"author": "Andres Movilla <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -18,8 +18,8 @@ | |
"build": "npm run build:esm & npm run build:cjs & npm run build:types", | ||
"build:esm": "cross-env BABEL_ENV=esm babel src --extensions .tsx -o dist/index.mjs", | ||
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .tsx -o dist/index.js", | ||
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist", | ||
"pub": "npm run build && rimraf tsconfig.tsbuildinfo && npm publish" | ||
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist && rimraf tsconfig.tsbuildinfo", | ||
"pub": "npm run build && npm publish" | ||
}, | ||
"dependencies": { | ||
"framer-motion": "^10.9.1", | ||
|