@tsparticles/interaction-external-destroy 4.0.0-beta.11

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.
Files changed (39) hide show
  1. package/799.min.js +1 -0
  2. package/LICENSE +21 -0
  3. package/README.md +121 -0
  4. package/browser/Destroyer.js +55 -0
  5. package/browser/Options/Classes/Destroy.js +15 -0
  6. package/browser/Options/Classes/DestroyOptions.js +1 -0
  7. package/browser/Options/Interfaces/IDestroy.js +1 -0
  8. package/browser/Types.js +1 -0
  9. package/browser/Utils.js +36 -0
  10. package/browser/index.js +12 -0
  11. package/browser/package.json +1 -0
  12. package/cjs/Destroyer.js +55 -0
  13. package/cjs/Options/Classes/Destroy.js +15 -0
  14. package/cjs/Options/Classes/DestroyOptions.js +1 -0
  15. package/cjs/Options/Interfaces/IDestroy.js +1 -0
  16. package/cjs/Types.js +1 -0
  17. package/cjs/Utils.js +36 -0
  18. package/cjs/index.js +12 -0
  19. package/cjs/package.json +1 -0
  20. package/dist_browser_Destroyer_js.js +40 -0
  21. package/esm/Destroyer.js +55 -0
  22. package/esm/Options/Classes/Destroy.js +15 -0
  23. package/esm/Options/Classes/DestroyOptions.js +1 -0
  24. package/esm/Options/Interfaces/IDestroy.js +1 -0
  25. package/esm/Types.js +1 -0
  26. package/esm/Utils.js +36 -0
  27. package/esm/index.js +12 -0
  28. package/esm/package.json +1 -0
  29. package/package.json +100 -0
  30. package/report.html +95 -0
  31. package/tsparticles.interaction.external.destroy.js +367 -0
  32. package/tsparticles.interaction.external.destroy.min.js +2 -0
  33. package/types/Destroyer.d.ts +14 -0
  34. package/types/Options/Classes/Destroy.d.ts +7 -0
  35. package/types/Options/Classes/DestroyOptions.d.ts +7 -0
  36. package/types/Options/Interfaces/IDestroy.d.ts +3 -0
  37. package/types/Types.d.ts +16 -0
  38. package/types/Utils.d.ts +5 -0
  39. package/types/index.d.ts +4 -0
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "@tsparticles/interaction-external-destroy",
3
+ "version": "4.0.0-beta.11",
4
+ "description": "tsParticles destroy external interaction",
5
+ "homepage": "https://particles.js.org",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/tsparticles/tsparticles.git",
9
+ "directory": "interactions/external/destroy"
10
+ },
11
+ "keywords": [
12
+ "front-end",
13
+ "frontend",
14
+ "tsparticles",
15
+ "particles.js",
16
+ "particlesjs",
17
+ "particles",
18
+ "particle",
19
+ "canvas",
20
+ "jsparticles",
21
+ "xparticles",
22
+ "particles-js",
23
+ "particles-bg",
24
+ "particles-bg-vue",
25
+ "particles-ts",
26
+ "particles.ts",
27
+ "react-particles-js",
28
+ "react-particles.js",
29
+ "react-particles",
30
+ "react",
31
+ "reactjs",
32
+ "vue-particles",
33
+ "ngx-particles",
34
+ "angular-particles",
35
+ "particleground",
36
+ "vue",
37
+ "vuejs",
38
+ "preact",
39
+ "preactjs",
40
+ "jquery",
41
+ "angularjs",
42
+ "angular",
43
+ "typescript",
44
+ "javascript",
45
+ "animation",
46
+ "web",
47
+ "html5",
48
+ "web-design",
49
+ "webdesign",
50
+ "css",
51
+ "html",
52
+ "css3",
53
+ "animated",
54
+ "background",
55
+ "confetti",
56
+ "canvas",
57
+ "fireworks",
58
+ "fireworks-js",
59
+ "confetti-js",
60
+ "confettijs",
61
+ "fireworksjs",
62
+ "canvas-confetti",
63
+ "tsparticles-plugin",
64
+ "@tsparticles/interaction"
65
+ ],
66
+ "author": "Matteo Bruni <matteo.bruni@me.com>",
67
+ "license": "MIT",
68
+ "bugs": {
69
+ "url": "https://github.com/tsparticles/tsparticles/issues"
70
+ },
71
+ "sideEffects": false,
72
+ "jsdelivr": "tsparticles.interaction.external.destroy.min.js",
73
+ "unpkg": "tsparticles.interaction.external.destroy.min.js",
74
+ "browser": "browser/index.js",
75
+ "main": "cjs/index.js",
76
+ "module": "esm/index.js",
77
+ "types": "types/index.d.ts",
78
+ "exports": {
79
+ ".": {
80
+ "types": "./types/index.d.ts",
81
+ "browser": "./browser/index.js",
82
+ "import": "./esm/index.js",
83
+ "require": "./cjs/index.js",
84
+ "default": "./esm/index.js"
85
+ },
86
+ "./package.json": "./package.json"
87
+ },
88
+ "peerDepdendencies": {
89
+ "@tsparticles/engine": "4.0.0-beta.1",
90
+ "@tsparticles/plugin-interactivity": "4.0.0-beta.1"
91
+ },
92
+ "publishConfig": {
93
+ "access": "public"
94
+ },
95
+ "type": "module",
96
+ "peerDependencies": {
97
+ "@tsparticles/engine": "4.0.0-beta.11",
98
+ "@tsparticles/plugin-interactivity": "4.0.0-beta.11"
99
+ }
100
+ }