voodoojs 0.4.6

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 (54) hide show
  1. package/README.md +77 -0
  2. package/dist/chunk-234ZLC6W.js +401 -0
  3. package/dist/chunk-4HQEOXTK.js +10271 -0
  4. package/dist/chunk-5777LJVW.js +64 -0
  5. package/dist/chunk-5CKGDARU.js +1845 -0
  6. package/dist/chunk-A2UOVQBP.js +82 -0
  7. package/dist/chunk-E27NRARW.js +16 -0
  8. package/dist/chunk-JZIYRIY6.js +1196 -0
  9. package/dist/chunk-NNU6WOOU.js +641 -0
  10. package/dist/chunk-PQZEVFVZ.js +448 -0
  11. package/dist/chunk-RJUNPXQF.js +946 -0
  12. package/dist/chunk-U76IRJKH.js +72 -0
  13. package/dist/essential.cjs +13889 -0
  14. package/dist/essential.d.cts +24 -0
  15. package/dist/essential.d.ts +24 -0
  16. package/dist/essential.js +51 -0
  17. package/dist/gpu.cjs +2008 -0
  18. package/dist/gpu.d.cts +68 -0
  19. package/dist/gpu.d.ts +68 -0
  20. package/dist/gpu.js +273 -0
  21. package/dist/http.cjs +467 -0
  22. package/dist/http.d.cts +148 -0
  23. package/dist/http.d.ts +148 -0
  24. package/dist/http.js +7 -0
  25. package/dist/index-CaLD-0oh.d.cts +608 -0
  26. package/dist/index-CaLD-0oh.d.ts +608 -0
  27. package/dist/index-DTllqUtj.d.cts +261 -0
  28. package/dist/index-DTllqUtj.d.ts +261 -0
  29. package/dist/index.cjs +23063 -0
  30. package/dist/index.d.cts +1603 -0
  31. package/dist/index.d.ts +1603 -0
  32. package/dist/index.js +6924 -0
  33. package/dist/query-CKJ4oSpG.d.cts +1595 -0
  34. package/dist/query-DQFRmu3u.d.ts +1595 -0
  35. package/dist/reactivity.cjs +676 -0
  36. package/dist/reactivity.d.cts +188 -0
  37. package/dist/reactivity.d.ts +188 -0
  38. package/dist/reactivity.js +4 -0
  39. package/dist/socket.cjs +2685 -0
  40. package/dist/socket.d.cts +167 -0
  41. package/dist/socket.d.ts +167 -0
  42. package/dist/socket.js +238 -0
  43. package/dist/style-XEUAGGJK.js +5 -0
  44. package/dist/utils.cjs +397 -0
  45. package/dist/utils.d.cts +111 -0
  46. package/dist/utils.d.ts +111 -0
  47. package/dist/utils.js +4 -0
  48. package/dist/voodoo.core.js +8213 -0
  49. package/dist/voodoo.core.min.js +146 -0
  50. package/dist/voodoo.full.js +21193 -0
  51. package/dist/voodoo.full.min.js +1784 -0
  52. package/dist/voodoo.js +14185 -0
  53. package/dist/voodoo.min.js +420 -0
  54. package/package.json +127 -0
package/package.json ADDED
@@ -0,0 +1,127 @@
1
+ {
2
+ "name": "voodoojs",
3
+ "version": "0.4.6",
4
+ "description": "Voodoo.js: the HTML-first JavaScript framework. Build reactive applications directly in HTML: fine-grained reactivity, components, HTTP, forms, validation, router and UI. No mandatory build step, no runtime dependencies, no Virtual DOM, no eval.",
5
+ "keywords": [
6
+ "javascript",
7
+ "framework",
8
+ "html-first-framework",
9
+ "reactive-framework",
10
+ "vanilla",
11
+ "html-first",
12
+ "reactivity",
13
+ "signals",
14
+ "directives",
15
+ "alpine",
16
+ "htmx",
17
+ "jquery",
18
+ "petite-vue",
19
+ "no-build",
20
+ "cdn",
21
+ "ajax",
22
+ "forms",
23
+ "validation",
24
+ "toast",
25
+ "modal",
26
+ "spa",
27
+ "hypermedia"
28
+ ],
29
+ "license": "MIT",
30
+ "type": "module",
31
+ "sideEffects": [
32
+ "./src/index.ts",
33
+ "./src/essential.ts",
34
+ "./src/core.ts",
35
+ "./src/browser.ts",
36
+ "./src/browser-essential.ts",
37
+ "./src/bootstrap.ts",
38
+ "./src/directives/*.ts",
39
+ "./src/motion/*.ts",
40
+ "./src/charts/*.ts",
41
+ "./src/ui/components.ts",
42
+ "./src/router/*.ts",
43
+ "./src/i18n/*.ts",
44
+ "./src/runtime/magics.ts",
45
+ "./dist/index.js",
46
+ "./dist/index.cjs",
47
+ "./dist/essential.js",
48
+ "./dist/essential.cjs",
49
+ "./dist/gpu.js",
50
+ "./dist/gpu.cjs",
51
+ "./dist/socket.js",
52
+ "./dist/socket.cjs",
53
+ "./dist/voodoo.js",
54
+ "./dist/voodoo.min.js",
55
+ "./dist/voodoo.core.js",
56
+ "./dist/voodoo.core.min.js",
57
+ "./dist/voodoo.full.js",
58
+ "./dist/voodoo.full.min.js"
59
+ ],
60
+ "main": "./dist/index.cjs",
61
+ "module": "./dist/index.js",
62
+ "types": "./dist/index.d.ts",
63
+ "unpkg": "./dist/voodoo.min.js",
64
+ "jsdelivr": "./dist/voodoo.min.js",
65
+ "exports": {
66
+ ".": {
67
+ "types": "./dist/index.d.ts",
68
+ "import": "./dist/index.js",
69
+ "require": "./dist/index.cjs"
70
+ },
71
+ "./essential": {
72
+ "types": "./dist/essential.d.ts",
73
+ "import": "./dist/essential.js",
74
+ "require": "./dist/essential.cjs"
75
+ },
76
+ "./reactivity": {
77
+ "types": "./dist/reactivity.d.ts",
78
+ "import": "./dist/reactivity.js",
79
+ "require": "./dist/reactivity.cjs"
80
+ },
81
+ "./http": {
82
+ "types": "./dist/http.d.ts",
83
+ "import": "./dist/http.js",
84
+ "require": "./dist/http.cjs"
85
+ },
86
+ "./utils": {
87
+ "types": "./dist/utils.d.ts",
88
+ "import": "./dist/utils.js",
89
+ "require": "./dist/utils.cjs"
90
+ },
91
+ "./gpu": {
92
+ "types": "./dist/gpu.d.ts",
93
+ "import": "./dist/gpu.js",
94
+ "require": "./dist/gpu.cjs"
95
+ },
96
+ "./socket": {
97
+ "types": "./dist/socket.d.ts",
98
+ "import": "./dist/socket.js",
99
+ "require": "./dist/socket.cjs"
100
+ },
101
+ "./dist/*": "./dist/*",
102
+ "./package.json": "./package.json"
103
+ },
104
+ "files": [
105
+ "dist",
106
+ "!dist/**/*.map",
107
+ "README.md"
108
+ ],
109
+ "scripts": {
110
+ "build": "tsup",
111
+ "dev": "tsup --watch",
112
+ "prepublishOnly": "npm run build"
113
+ },
114
+ "repository": {
115
+ "type": "git",
116
+ "url": "git+https://github.com/kwy404/Voodoo.js.git",
117
+ "directory": "packages/voodoojs"
118
+ },
119
+ "homepage": "https://kwy404.github.io/Voodoo.js/",
120
+ "bugs": {
121
+ "url": "https://github.com/kwy404/Voodoo.js/issues"
122
+ },
123
+ "publishConfig": {
124
+ "access": "public"
125
+ },
126
+ "author": "kwy404 (https://github.com/kwy404)"
127
+ }