@tsparticles/all 3.0.0-beta.0 → 3.0.0-beta.1
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/browser/package.json +1 -0
- package/cjs/package.json +1 -0
- package/esm/package.json +1 -0
- package/package.json +53 -41
- package/report.html +2 -2
- package/tsparticles.all.bundle.js +14006 -14042
- package/tsparticles.all.bundle.min.js +1 -1
- package/tsparticles.all.bundle.min.js.LICENSE.txt +1 -1
- package/tsparticles.all.js +19 -19
- package/tsparticles.all.min.js +1 -1
- package/tsparticles.all.min.js.LICENSE.txt +1 -1
|
@@ -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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsparticles/all",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.1",
|
|
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": {
|
|
@@ -80,50 +80,62 @@
|
|
|
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.all.bundle.min.js",
|
|
86
85
|
"unpkg": "tsparticles.all.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/interaction-light": "^3.0.0-beta.
|
|
92
|
-
"@tsparticles/interaction-particles-repulse": "^3.0.0-beta.
|
|
93
|
-
"@tsparticles/path-curves": "^3.0.0-beta.
|
|
94
|
-
"@tsparticles/path-perlin-noise": "^3.0.0-beta.
|
|
95
|
-
"@tsparticles/path-polygon": "^3.0.0-beta.
|
|
96
|
-
"@tsparticles/path-simplex-noise": "^3.0.0-beta.
|
|
97
|
-
"@tsparticles/path-svg": "^3.0.0-beta.
|
|
98
|
-
"@tsparticles/plugin-canvas-mask": "^3.0.0-beta.
|
|
99
|
-
"@tsparticles/plugin-easing-back": "^3.0.0-beta.
|
|
100
|
-
"@tsparticles/plugin-easing-circ": "^3.0.0-beta.
|
|
101
|
-
"@tsparticles/plugin-easing-cubic": "^3.0.0-beta.
|
|
102
|
-
"@tsparticles/plugin-easing-expo": "^3.0.0-beta.
|
|
103
|
-
"@tsparticles/plugin-easing-quart": "^3.0.0-beta.
|
|
104
|
-
"@tsparticles/plugin-easing-quint": "^3.0.0-beta.
|
|
105
|
-
"@tsparticles/plugin-easing-sine": "^3.0.0-beta.
|
|
106
|
-
"@tsparticles/plugin-export-image": "^3.0.0-beta.
|
|
107
|
-
"@tsparticles/plugin-export-json": "^3.0.0-beta.
|
|
108
|
-
"@tsparticles/plugin-export-video": "^3.0.0-beta.
|
|
109
|
-
"@tsparticles/plugin-hsv-color": "^3.0.0-beta.
|
|
110
|
-
"@tsparticles/plugin-infection": "^3.0.0-beta.
|
|
111
|
-
"@tsparticles/plugin-motion": "^3.0.0-beta.
|
|
112
|
-
"@tsparticles/plugin-polygon-mask": "^3.0.0-beta.
|
|
113
|
-
"@tsparticles/plugin-sounds": "^3.0.0-beta.
|
|
114
|
-
"@tsparticles/shape-arrow": "^3.0.0-beta.
|
|
115
|
-
"@tsparticles/shape-bubble": "^3.0.0-beta.
|
|
116
|
-
"@tsparticles/shape-cards": "^3.0.0-beta.
|
|
117
|
-
"@tsparticles/shape-cog": "^3.0.0-beta.
|
|
118
|
-
"@tsparticles/shape-heart": "^3.0.0-beta.
|
|
119
|
-
"@tsparticles/shape-multiline-text": "^3.0.0-beta.
|
|
120
|
-
"@tsparticles/shape-path": "^3.0.0-beta.
|
|
121
|
-
"@tsparticles/shape-rounded-polygon": "^3.0.0-beta.
|
|
122
|
-
"@tsparticles/shape-rounded-rect": "^3.0.0-beta.
|
|
123
|
-
"@tsparticles/shape-spiral": "^3.0.0-beta.
|
|
124
|
-
"@tsparticles/updater-gradient": "^3.0.0-beta.
|
|
125
|
-
"@tsparticles/updater-orbit": "^3.0.0-beta.
|
|
126
|
-
"tsparticles": "^3.0.0-beta.
|
|
102
|
+
"@tsparticles/engine": "^3.0.0-beta.1",
|
|
103
|
+
"@tsparticles/interaction-light": "^3.0.0-beta.1",
|
|
104
|
+
"@tsparticles/interaction-particles-repulse": "^3.0.0-beta.1",
|
|
105
|
+
"@tsparticles/path-curves": "^3.0.0-beta.1",
|
|
106
|
+
"@tsparticles/path-perlin-noise": "^3.0.0-beta.1",
|
|
107
|
+
"@tsparticles/path-polygon": "^3.0.0-beta.1",
|
|
108
|
+
"@tsparticles/path-simplex-noise": "^3.0.0-beta.1",
|
|
109
|
+
"@tsparticles/path-svg": "^3.0.0-beta.1",
|
|
110
|
+
"@tsparticles/plugin-canvas-mask": "^3.0.0-beta.1",
|
|
111
|
+
"@tsparticles/plugin-easing-back": "^3.0.0-beta.1",
|
|
112
|
+
"@tsparticles/plugin-easing-circ": "^3.0.0-beta.1",
|
|
113
|
+
"@tsparticles/plugin-easing-cubic": "^3.0.0-beta.1",
|
|
114
|
+
"@tsparticles/plugin-easing-expo": "^3.0.0-beta.1",
|
|
115
|
+
"@tsparticles/plugin-easing-quart": "^3.0.0-beta.1",
|
|
116
|
+
"@tsparticles/plugin-easing-quint": "^3.0.0-beta.1",
|
|
117
|
+
"@tsparticles/plugin-easing-sine": "^3.0.0-beta.1",
|
|
118
|
+
"@tsparticles/plugin-export-image": "^3.0.0-beta.1",
|
|
119
|
+
"@tsparticles/plugin-export-json": "^3.0.0-beta.1",
|
|
120
|
+
"@tsparticles/plugin-export-video": "^3.0.0-beta.1",
|
|
121
|
+
"@tsparticles/plugin-hsv-color": "^3.0.0-beta.1",
|
|
122
|
+
"@tsparticles/plugin-infection": "^3.0.0-beta.1",
|
|
123
|
+
"@tsparticles/plugin-motion": "^3.0.0-beta.1",
|
|
124
|
+
"@tsparticles/plugin-polygon-mask": "^3.0.0-beta.1",
|
|
125
|
+
"@tsparticles/plugin-sounds": "^3.0.0-beta.1",
|
|
126
|
+
"@tsparticles/shape-arrow": "^3.0.0-beta.1",
|
|
127
|
+
"@tsparticles/shape-bubble": "^3.0.0-beta.1",
|
|
128
|
+
"@tsparticles/shape-cards": "^3.0.0-beta.1",
|
|
129
|
+
"@tsparticles/shape-cog": "^3.0.0-beta.1",
|
|
130
|
+
"@tsparticles/shape-heart": "^3.0.0-beta.1",
|
|
131
|
+
"@tsparticles/shape-multiline-text": "^3.0.0-beta.1",
|
|
132
|
+
"@tsparticles/shape-path": "^3.0.0-beta.1",
|
|
133
|
+
"@tsparticles/shape-rounded-polygon": "^3.0.0-beta.1",
|
|
134
|
+
"@tsparticles/shape-rounded-rect": "^3.0.0-beta.1",
|
|
135
|
+
"@tsparticles/shape-spiral": "^3.0.0-beta.1",
|
|
136
|
+
"@tsparticles/updater-gradient": "^3.0.0-beta.1",
|
|
137
|
+
"@tsparticles/updater-orbit": "^3.0.0-beta.1",
|
|
138
|
+
"tsparticles": "^3.0.0-beta.1"
|
|
127
139
|
},
|
|
128
140
|
"publishConfig": {
|
|
129
141
|
"access": "public"
|