@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 +8 -8
- package/browser/package.json +1 -0
- package/cjs/package.json +1 -0
- package/esm/package.json +1 -0
- package/package.json +25 -13
- package/report.html +23 -5
- package/tsparticles.basic.bundle.js +3744 -3743
- package/tsparticles.basic.bundle.min.js +1 -1
- package/tsparticles.basic.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.basic.js +1 -1
- package/tsparticles.basic.min.js.LICENSE.txt +1 -1
package/README.md
CHANGED
|
@@ -4,17 +4,17 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.jsdelivr.com/package/npm/@tsparticles/basic) [](https://www.npmjs.com/package/@tsparticles/basic) [](https://www.npmjs.com/package/@tsparticles/basic) [](https://github.com/sponsors/matteobruni)
|
|
6
6
|
|
|
7
|
-
[tsParticles](https://github.com/
|
|
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/
|
|
12
|
-
- [@tsparticles/move-base](https://github.com/
|
|
13
|
-
- [@tsparticles/shape-circle](https://github.com/
|
|
14
|
-
- [@tsparticles/updater-color](https://github.com/
|
|
15
|
-
- [@tsparticles/updater-opacity](https://github.com/
|
|
16
|
-
- [@tsparticles/updater-out-modes](https://github.com/
|
|
17
|
-
- [@tsparticles/updater-size](https://github.com/
|
|
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" }
|
package/cjs/package.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{ "type": "commonjs" }
|
package/esm/package.json
ADDED
|
@@ -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.
|
|
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/
|
|
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/
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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.
|
|
91
|
-
"@tsparticles/move-base": "^3.0.0-beta.
|
|
92
|
-
"@tsparticles/shape-circle": "^3.0.0-beta.
|
|
93
|
-
"@tsparticles/updater-color": "^3.0.0-beta.
|
|
94
|
-
"@tsparticles/updater-opacity": "^3.0.0-beta.
|
|
95
|
-
"@tsparticles/updater-out-modes": "^3.0.0-beta.
|
|
96
|
-
"@tsparticles/updater-size": "^3.0.0-beta.
|
|
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"
|