-
-
Notifications
You must be signed in to change notification settings - Fork 188
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
1 parent
6bd405c
commit 88b3c62
Showing
14 changed files
with
223 additions
and
204 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
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
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
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
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
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
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
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
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,78 +1,80 @@ | ||
{ | ||
"name": "embla-carousel-svelte", | ||
"version": "8.0.0-rc14", | ||
"author": "David Jerleke", | ||
"description": "A lightweight carousel library with fluid motion and great swipe precision", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/davidjerleke/embla-carousel" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/davidjerleke/embla-carousel/issues" | ||
}, | ||
"homepage": "https://www.embla-carousel.com", | ||
"license": "MIT", | ||
"keywords": [ | ||
"slider", | ||
"carousel", | ||
"slideshow", | ||
"gallery", | ||
"lightweight", | ||
"touch", | ||
"javascript", | ||
"typescript", | ||
"react", | ||
"vue", | ||
"svelte" | ||
], | ||
"main": "embla-carousel-svelte.umd.js", | ||
"unpkg": "embla-carousel-svelte.umd.js", | ||
"module": "embla-carousel-svelte.esm.js", | ||
"types": "index.d.ts", | ||
"sideEffects": false, | ||
"files": [ | ||
"embla-carousel-svelte*", | ||
"components/**/*", | ||
"index.d.ts" | ||
], | ||
"scripts": { | ||
"test": "echo \"Info: no tests specified\" && exit 0", | ||
"build": "rollup -c", | ||
"start": "rollup -c --watch", | ||
"eslint:report": "eslint \"src/**/*.{js,tsx,ts}\"" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^27.4.0", | ||
"@typescript-eslint/eslint-plugin": "^5.10.2", | ||
"@typescript-eslint/parser": "^5.10.2", | ||
"eslint": "^8.8.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^27.5.0", | ||
"prettier": "2.5.1", | ||
"rollup": "^2.68.0", | ||
"svelte": "^3.49.0", | ||
"ts-jest": "^27.1.3", | ||
"typescript": "^4.5.5" | ||
}, | ||
"dependencies": { | ||
"embla-carousel": "8.0.0-rc14", | ||
"embla-carousel-reactive-utils": "8.0.0-rc14" | ||
}, | ||
"peerDependencies": { | ||
"svelte": "^3.49.0 || ^4.0.0" | ||
}, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"default": "./esm/embla-carousel-svelte.esm.js", | ||
"types": "./esm/index.d.ts" | ||
}, | ||
"require": { | ||
"default": "./cjs/embla-carousel-svelte.cjs.js", | ||
"types": "./cjs/index.d.ts" | ||
} | ||
} | ||
} | ||
} | ||
"name": "embla-carousel-svelte", | ||
"version": "8.0.0-rc14", | ||
"author": "David Jerleke", | ||
"description": "A lightweight carousel library with fluid motion and great swipe precision", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/davidjerleke/embla-carousel" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/davidjerleke/embla-carousel/issues" | ||
}, | ||
"homepage": "https://www.embla-carousel.com", | ||
"license": "MIT", | ||
"keywords": [ | ||
"slider", | ||
"carousel", | ||
"slideshow", | ||
"gallery", | ||
"lightweight", | ||
"touch", | ||
"javascript", | ||
"typescript", | ||
"react", | ||
"vue", | ||
"svelte" | ||
], | ||
"main": "embla-carousel-svelte.umd.js", | ||
"unpkg": "embla-carousel-svelte.umd.js", | ||
"module": "embla-carousel-svelte.esm.js", | ||
"types": "index.d.ts", | ||
"sideEffects": false, | ||
"files": [ | ||
"embla-carousel-svelte*", | ||
"components/**/*", | ||
"index.d.ts", | ||
"esm/**/*", | ||
"cjs/**/*" | ||
], | ||
"scripts": { | ||
"test": "echo \"Info: no tests specified\" && exit 0", | ||
"build": "rollup -c", | ||
"start": "rollup -c --watch", | ||
"eslint:report": "eslint \"src/**/*.{js,tsx,ts}\"" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^27.4.0", | ||
"@typescript-eslint/eslint-plugin": "^5.10.2", | ||
"@typescript-eslint/parser": "^5.10.2", | ||
"eslint": "^8.8.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^27.5.0", | ||
"prettier": "2.5.1", | ||
"rollup": "^2.68.0", | ||
"svelte": "^3.49.0", | ||
"ts-jest": "^27.1.3", | ||
"typescript": "^4.5.5" | ||
}, | ||
"dependencies": { | ||
"embla-carousel": "8.0.0-rc14", | ||
"embla-carousel-reactive-utils": "8.0.0-rc14" | ||
}, | ||
"peerDependencies": { | ||
"svelte": "^3.49.0 || ^4.0.0" | ||
}, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": { | ||
"import": { | ||
"types": "./esm/index.d.ts", | ||
"default": "./esm/embla-carousel-svelte.esm.js" | ||
}, | ||
"require": { | ||
"types": "./cjs/index.d.ts", | ||
"default": "./cjs/embla-carousel-svelte.cjs.js" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.