Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e2c0b404f | |||
| 8dca45c6a3 | |||
| a8f9b32afd | |||
| 64405981fe | |||
| 5121b24802 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -2,5 +2,6 @@
|
||||
/public/build/
|
||||
# dist
|
||||
/storybook-static
|
||||
|
||||
*.tgz
|
||||
.DS_Store
|
||||
|
||||
|
||||
1
LICENSE
1
LICENSE
@@ -187,6 +187,7 @@
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright 2021 vadimkorr
|
||||
Copyright 2024 Resultium LLC
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
20
README.md
20
README.md
@@ -1,20 +1,8 @@
|
||||
# @xxfogs/svelte-carousel
|
||||
# @resultium/svelte-carousel
|
||||
|
||||
This is a fork of [svelte-carousel](https://github.com/vadimkorr/svelte-carousel) project made due to it's lack of maintainment.
|
||||
This is a fork of [svelte-carousel](https://github.com/vadimkorr/svelte-carousel) project originally made bt [vadimkorr](https://github.com/vadimkorr) made due to lack of maintainment of the original package
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
yarn add -D @xxfogs/svelte-carousel
|
||||
```
|
||||
|
||||
```bash
|
||||
pnpm i -D @xxfogs/svelte-carousel
|
||||
```
|
||||
|
||||
```bash
|
||||
yarn i -D @xxfogs/svelte-carousel
|
||||
```
|
||||
This package is not published to any public registries due to being intended to be used exclusively in Resultium projects, however you are free to fork or use this codebase as per Apache-2.0 license
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -23,7 +11,7 @@ yarn i -D @xxfogs/svelte-carousel
|
||||
|
||||
```svelte
|
||||
<script>
|
||||
import Carousel from '@xxfogs/svelte-carousel';
|
||||
import Carousel from '@resultium/svelte-carousel';
|
||||
import { browser } from '$app/environment';
|
||||
|
||||
let carousel; // for calling methods of the carousel instance
|
||||
|
||||
53
package.json
53
package.json
@@ -1,20 +1,25 @@
|
||||
{
|
||||
"name": "@xxfogs/svelte-carousel",
|
||||
"version": "1.0.0",
|
||||
"description": "Svelte carousel",
|
||||
"name": "@resultium/svelte-carousel",
|
||||
"version": "1.0.1",
|
||||
"description": "Svelte carousel component",
|
||||
"main": "src/main.js",
|
||||
"module": "src/main.js",
|
||||
"svelte": "src/main.js",
|
||||
"author": "xxfogs",
|
||||
"exports": {
|
||||
".": {
|
||||
"svelte": "./src/main.js"
|
||||
}
|
||||
},
|
||||
"author": "Resultium LLC",
|
||||
"type": "module",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/xxfogs/svelte-carousel.git"
|
||||
"url": "git+https://git.resultium.net/public/svelte-carousel.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/xxfogs/svelte-carousel/issues"
|
||||
"email": "technology@resultium.io"
|
||||
},
|
||||
"homepage": "https://github.com/xxfogs/svelte-carousel#readme",
|
||||
"homepage": "https://git.resultium.net/public/svelte-carousel",
|
||||
"keywords": [
|
||||
"svelte",
|
||||
"carousel",
|
||||
@@ -31,29 +36,29 @@
|
||||
"test": "jest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.10",
|
||||
"@babel/plugin-transform-runtime": "^7.14.5",
|
||||
"@babel/preset-env": "^7.12.11",
|
||||
"@rollup/plugin-commonjs": "^17.0.0",
|
||||
"@rollup/plugin-image": "^2.1.0",
|
||||
"@babel/core": "^7.23.9",
|
||||
"@babel/plugin-transform-runtime": "^7.23.9",
|
||||
"@babel/preset-env": "^7.23.9",
|
||||
"@rollup/plugin-babel": "^6.0.4",
|
||||
"@rollup/plugin-commonjs": "^17.1.0",
|
||||
"@rollup/plugin-image": "^2.1.1",
|
||||
"@rollup/plugin-json": "^4.1.0",
|
||||
"@rollup/plugin-node-resolve": "^11.0.0",
|
||||
"@storybook/addon-actions": "^6.1.14",
|
||||
"@rollup/plugin-node-resolve": "^11.2.1",
|
||||
"@rollup/plugin-terser": "^0.4.4",
|
||||
"@storybook/addon-actions": "^6.5.16",
|
||||
"@storybook/addon-essentials": "^7.6.16",
|
||||
"@storybook/addon-links": "^6.1.14",
|
||||
"@storybook/addon-links": "^6.5.16",
|
||||
"@storybook/svelte": "^7.6.16",
|
||||
"babel-loader": "^8.2.2",
|
||||
"babel-loader": "^8.3.0",
|
||||
"jest": "^26.6.3",
|
||||
"lodash": "^4.17.20",
|
||||
"lodash": "^4.17.21",
|
||||
"mdsvex": "^0.8.9",
|
||||
"rollup": "^2.3.4",
|
||||
"rollup-plugin-babel": "^4.4.0",
|
||||
"rollup": "^2.79.1",
|
||||
"rollup-plugin-import-css": "^2.0.1",
|
||||
"rollup-plugin-livereload": "^2.0.0",
|
||||
"rollup-plugin-svelte": "^7.0.0",
|
||||
"rollup-plugin-terser": "^7.0.0",
|
||||
"sirv-cli": "^1.0.11",
|
||||
"svelte": "^3.31.2",
|
||||
"rollup-plugin-livereload": "^2.0.5",
|
||||
"rollup-plugin-svelte": "^7.1.6",
|
||||
"sirv-cli": "^1.0.14",
|
||||
"svelte": "^3.59.2",
|
||||
"svelte-loader": "^2.13.6"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
8479
pnpm-lock.yaml
generated
Normal file
8479
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user