@tsparticles/fireworks 3.0.0-beta.1 → 3.0.0-beta.3
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 +15 -15
- package/package.json +12 -12
- package/report.html +23 -5
- package/tsparticles.fireworks.bundle.js +96 -75
- package/tsparticles.fireworks.bundle.min.js +1 -1
- package/tsparticles.fireworks.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.fireworks.js +1 -1
- package/tsparticles.fireworks.min.js.LICENSE.txt +1 -1
package/README.md
CHANGED
|
@@ -4,25 +4,25 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.jsdelivr.com/package/npm/@tsparticles/fireworks) [](https://www.npmjs.com/package/@tsparticles/fireworks) [](https://www.npmjs.com/package/@tsparticles/fireworks) [](https://github.com/sponsors/matteobruni)
|
|
6
6
|
|
|
7
|
-
[tsParticles](https://github.com/
|
|
7
|
+
[tsParticles](https://github.com/tsparticles/tsparticles) fireworks bundle loads all the features necessary to create
|
|
8
8
|
beautiful fireworks effects with ease.
|
|
9
9
|
|
|
10
10
|
**Included Packages**
|
|
11
11
|
|
|
12
|
-
- [@tsparticles/engine](https://github.com/
|
|
13
|
-
- [@tsparticles/move-base](https://github.com/
|
|
14
|
-
- [@tsparticles/plugin-emitters](https://github.com/
|
|
15
|
-
- [@tsparticles/plugin-sounds](https://github.com/
|
|
16
|
-
- [@tsparticles/shape-circle](https://github.com/
|
|
17
|
-
- [@tsparticles/shape-line](https://github.com/
|
|
18
|
-
- [@tsparticles/updater-color](https://github.com/
|
|
19
|
-
- [@tsparticles/updater-destroy](https://github.com/
|
|
20
|
-
- [@tsparticles/updater-life](https://github.com/
|
|
21
|
-
- [@tsparticles/updater-opacity](https://github.com/
|
|
22
|
-
- [@tsparticles/updater-out-modes](https://github.com/
|
|
23
|
-
- [@tsparticles/updater-rotate](https://github.com/
|
|
24
|
-
- [@tsparticles/updater-size](https://github.com/
|
|
25
|
-
- [@tsparticles/updater-stroke-color](https://github.com/
|
|
12
|
+
- [@tsparticles/engine](https://github.com/tsparticles/tsparticles/tree/main/engine)
|
|
13
|
+
- [@tsparticles/move-base](https://github.com/tsparticles/tsparticles/tree/main/move/base)
|
|
14
|
+
- [@tsparticles/plugin-emitters](https://github.com/tsparticles/tsparticles/tree/main/plugins/emitters)
|
|
15
|
+
- [@tsparticles/plugin-sounds](https://github.com/tsparticles/tsparticles/tree/main/plugins/sounds)
|
|
16
|
+
- [@tsparticles/shape-circle](https://github.com/tsparticles/tsparticles/tree/main/shapes/circle)
|
|
17
|
+
- [@tsparticles/shape-line](https://github.com/tsparticles/tsparticles/tree/main/shapes/line)
|
|
18
|
+
- [@tsparticles/updater-color](https://github.com/tsparticles/tsparticles/tree/main/updaters/color)
|
|
19
|
+
- [@tsparticles/updater-destroy](https://github.com/tsparticles/tsparticles/tree/main/updaters/destroy)
|
|
20
|
+
- [@tsparticles/updater-life](https://github.com/tsparticles/tsparticles/tree/main/updaters/life)
|
|
21
|
+
- [@tsparticles/updater-opacity](https://github.com/tsparticles/tsparticles/tree/main/updaters/opacity)
|
|
22
|
+
- [@tsparticles/updater-out-modes](https://github.com/tsparticles/tsparticles/tree/main/updaters/outModes)
|
|
23
|
+
- [@tsparticles/updater-rotate](https://github.com/tsparticles/tsparticles/tree/main/updaters/rotate)
|
|
24
|
+
- [@tsparticles/updater-size](https://github.com/tsparticles/tsparticles/tree/main/updaters/size)
|
|
25
|
+
- [@tsparticles/updater-stroke-color](https://github.com/tsparticles/tsparticles/tree/main/updaters/strokeColor)
|
|
26
26
|
|
|
27
27
|
## How to use it
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/fireworks",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.3",
|
|
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/fireworks"
|
|
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
|
{
|
|
@@ -99,15 +99,15 @@
|
|
|
99
99
|
"./package.json": "./package.json"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
|
-
"@tsparticles/basic": "^3.0.0-beta.
|
|
103
|
-
"@tsparticles/engine": "^3.0.0-beta.
|
|
104
|
-
"@tsparticles/plugin-emitters": "^3.0.0-beta.
|
|
105
|
-
"@tsparticles/plugin-sounds": "^3.0.0-beta.
|
|
106
|
-
"@tsparticles/shape-line": "^3.0.0-beta.
|
|
107
|
-
"@tsparticles/updater-destroy": "^3.0.0-beta.
|
|
108
|
-
"@tsparticles/updater-life": "^3.0.0-beta.
|
|
109
|
-
"@tsparticles/updater-rotate": "^3.0.0-beta.
|
|
110
|
-
"@tsparticles/updater-stroke-color": "^3.0.0-beta.
|
|
102
|
+
"@tsparticles/basic": "^3.0.0-beta.3",
|
|
103
|
+
"@tsparticles/engine": "^3.0.0-beta.3",
|
|
104
|
+
"@tsparticles/plugin-emitters": "^3.0.0-beta.3",
|
|
105
|
+
"@tsparticles/plugin-sounds": "^3.0.0-beta.3",
|
|
106
|
+
"@tsparticles/shape-line": "^3.0.0-beta.3",
|
|
107
|
+
"@tsparticles/updater-destroy": "^3.0.0-beta.3",
|
|
108
|
+
"@tsparticles/updater-life": "^3.0.0-beta.3",
|
|
109
|
+
"@tsparticles/updater-rotate": "^3.0.0-beta.3",
|
|
110
|
+
"@tsparticles/updater-stroke-color": "^3.0.0-beta.3"
|
|
111
111
|
},
|
|
112
112
|
"publishConfig": {
|
|
113
113
|
"access": "public"
|