@tsparticles/basic 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
@@ -4,17 +4,17 @@
4
4
 
5
5
  [![jsDelivr](https://data.jsdelivr.com/v1/package/npm/@tsparticles/basic/badge)](https://www.jsdelivr.com/package/npm/@tsparticles/basic) [![npmjs](https://badge.fury.io/js/@tsparticles/basic.svg)](https://www.npmjs.com/package/@tsparticles/basic) [![npmjs](https://img.shields.io/npm/dt/@tsparticles/basic)](https://www.npmjs.com/package/@tsparticles/basic) [![GitHub Sponsors](https://img.shields.io/github/sponsors/matteobruni)](https://github.com/sponsors/matteobruni)
6
6
 
7
- [tsParticles](https://github.com/matteobruni/tsparticles) basic bundle loads the minimum features to a `@tsparticles/engine` instance for having dots moving in the canvas.
7
+ [tsParticles](https://github.com/tsparticles/tsparticles) basic bundle loads the minimum features to a `@tsparticles/engine` instance for having dots moving in the canvas.
8
8
 
9
9
  **Included Packages**
10
10
 
11
- - [@tsparticles/engine](https://github.com/matteobruni/tsparticles/tree/main/engine)
12
- - [@tsparticles/move-base](https://github.com/matteobruni/tsparticles/tree/main/move/base)
13
- - [@tsparticles/shape-circle](https://github.com/matteobruni/tsparticles/tree/main/shapes/circle)
14
- - [@tsparticles/updater-color](https://github.com/matteobruni/tsparticles/tree/main/updaters/color)
15
- - [@tsparticles/updater-opacity](https://github.com/matteobruni/tsparticles/tree/main/updaters/opacity)
16
- - [@tsparticles/updater-out-modes](https://github.com/matteobruni/tsparticles/tree/main/updaters/outModes)
17
- - [@tsparticles/updater-size](https://github.com/matteobruni/tsparticles/tree/main/updaters/size)
11
+ - [@tsparticles/engine](https://github.com/tsparticles/tsparticles/tree/main/engine)
12
+ - [@tsparticles/move-base](https://github.com/tsparticles/tsparticles/tree/main/move/base)
13
+ - [@tsparticles/shape-circle](https://github.com/tsparticles/tsparticles/tree/main/shapes/circle)
14
+ - [@tsparticles/updater-color](https://github.com/tsparticles/tsparticles/tree/main/updaters/color)
15
+ - [@tsparticles/updater-opacity](https://github.com/tsparticles/tsparticles/tree/main/updaters/opacity)
16
+ - [@tsparticles/updater-out-modes](https://github.com/tsparticles/tsparticles/tree/main/updaters/outModes)
17
+ - [@tsparticles/updater-size](https://github.com/tsparticles/tsparticles/tree/main/updaters/size)
18
18
 
19
19
  ## How to use it
20
20
 
@@ -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/basic",
3
- "version": "3.0.0-beta.0",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.",
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": "bundles/basic"
10
10
  },
11
11
  "keywords": [
@@ -64,7 +64,7 @@
64
64
  "author": "Matteo Bruni <matteo.bruni@me.com>",
65
65
  "license": "MIT",
66
66
  "bugs": {
67
- "url": "https://github.com/matteobruni/tsparticles/issues"
67
+ "url": "https://github.com/tsparticles/tsparticles/issues"
68
68
  },
69
69
  "funding": [
70
70
  {
@@ -80,20 +80,32 @@
80
80
  "url": "https://www.buymeacoffee.com/matteobruni"
81
81
  }
82
82
  ],
83
- "main": "cjs/index.js",
84
- "module": "esm/index.js",
83
+ "sideEffects": false,
85
84
  "jsdelivr": "tsparticles.basic.bundle.min.js",
86
85
  "unpkg": "tsparticles.basic.bundle.min.js",
86
+ "browser": "browser/index.js",
87
+ "main": "cjs/index.js",
88
+ "module": "esm/index.js",
87
89
  "types": "types/index.d.ts",
88
- "sideEffects": false,
90
+ "exports": {
91
+ ".": {
92
+ "types": "./types/index.d.ts",
93
+ "browser": "./browser/index.js",
94
+ "import": "./esm/index.js",
95
+ "require": "./cjs/index.js",
96
+ "umd": "./umd/index.js",
97
+ "default": "./cjs/index.js"
98
+ },
99
+ "./package.json": "./package.json"
100
+ },
89
101
  "dependencies": {
90
- "@tsparticles/engine": "^3.0.0-beta.0",
91
- "@tsparticles/move-base": "^3.0.0-beta.0",
92
- "@tsparticles/shape-circle": "^3.0.0-beta.0",
93
- "@tsparticles/updater-color": "^3.0.0-beta.0",
94
- "@tsparticles/updater-opacity": "^3.0.0-beta.0",
95
- "@tsparticles/updater-out-modes": "^3.0.0-beta.0",
96
- "@tsparticles/updater-size": "^3.0.0-beta.0"
102
+ "@tsparticles/engine": "^3.0.0-beta.2",
103
+ "@tsparticles/move-base": "^3.0.0-beta.2",
104
+ "@tsparticles/shape-circle": "^3.0.0-beta.2",
105
+ "@tsparticles/updater-color": "^3.0.0-beta.2",
106
+ "@tsparticles/updater-opacity": "^3.0.0-beta.2",
107
+ "@tsparticles/updater-out-modes": "^3.0.0-beta.2",
108
+ "@tsparticles/updater-size": "^3.0.0-beta.2"
97
109
  },
98
110
  "publishConfig": {
99
111
  "access": "public"