@tsparticles/plugin-easing-back 3.0.0-beta.0 → 3.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  [![npmjs](https://badge.fury.io/js/@tsparticles/plugin-easing-back.svg)](https://www.npmjs.com/package/@tsparticles/plugin-easing-back)
7
7
  [![npmjs](https://img.shields.io/npm/dt/@tsparticles/plugin-easing-back)](https://www.npmjs.com/package/@tsparticles/plugin-easing-back) [![GitHub Sponsors](https://img.shields.io/github/sponsors/matteobruni)](https://github.com/sponsors/matteobruni)
8
8
 
9
- [tsParticles](https://github.com/matteobruni/tsparticles) plugin for adding the easing back support.
9
+ [tsParticles](https://github.com/tsparticles/tsparticles) plugin for adding the easing back support.
10
10
 
11
11
  ## How to use it
12
12
 
@@ -0,0 +1 @@
1
+ { "type": "module" }
@@ -0,0 +1 @@
1
+ { "type": "commonjs" }
@@ -0,0 +1 @@
1
+ { "type": "module" }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@tsparticles/plugin-easing-back",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "tsParticles easing back plugin",
5
5
  "homepage": "https://particles.js.org",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/matteobruni/tsparticles.git",
8
+ "url": "git+https://github.com/tsparticles/tsparticles.git",
9
9
  "directory": "plugins/easings/back"
10
10
  },
11
11
  "keywords": [
@@ -65,7 +65,7 @@
65
65
  "author": "Matteo Bruni <matteo.bruni@me.com>",
66
66
  "license": "MIT",
67
67
  "bugs": {
68
- "url": "https://github.com/matteobruni/tsparticles/issues"
68
+ "url": "https://github.com/tsparticles/tsparticles/issues"
69
69
  },
70
70
  "funding": [
71
71
  {
@@ -81,14 +81,26 @@
81
81
  "url": "https://www.buymeacoffee.com/matteobruni"
82
82
  }
83
83
  ],
84
- "main": "cjs/index.js",
84
+ "sideEffects": false,
85
85
  "jsdelivr": "tsparticles.plugin.easing.back.min.js",
86
86
  "unpkg": "tsparticles.plugin.easing.back.min.js",
87
+ "browser": "browser/index.js",
88
+ "main": "cjs/index.js",
87
89
  "module": "esm/index.js",
88
90
  "types": "types/index.d.ts",
89
- "sideEffects": false,
91
+ "exports": {
92
+ ".": {
93
+ "types": "./types/index.d.ts",
94
+ "browser": "./browser/index.js",
95
+ "import": "./esm/index.js",
96
+ "require": "./cjs/index.js",
97
+ "umd": "./umd/index.js",
98
+ "default": "./cjs/index.js"
99
+ },
100
+ "./package.json": "./package.json"
101
+ },
90
102
  "dependencies": {
91
- "@tsparticles/engine": "^3.0.0-beta.0"
103
+ "@tsparticles/engine": "^3.0.0-beta.2"
92
104
  },
93
105
  "publishConfig": {
94
106
  "access": "public"