@evitcastudio/kit 2.1.2 → 2.2.0

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 (83) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +60 -59
  3. package/lib/bundle/cli/cli.js +1387 -53
  4. package/lib/bundle/cli/kit-game-templates/multi/README.md +15 -0
  5. package/lib/bundle/cli/kit-game-templates/multi/bun-build.ts +109 -0
  6. package/lib/bundle/cli/kit-game-templates/multi/favicon.ico +0 -0
  7. package/lib/bundle/cli/kit-game-templates/multi/package.json +23 -0
  8. package/lib/bundle/cli/kit-game-templates/multi/src/client/c-network.ts +22 -0
  9. package/lib/bundle/cli/kit-game-templates/multi/src/client/index.html +9 -0
  10. package/lib/bundle/cli/kit-game-templates/multi/src/client/index.ts +45 -0
  11. package/lib/bundle/cli/kit-game-templates/multi/src/client/packets/s-packets.ts +5 -0
  12. package/lib/bundle/cli/kit-game-templates/multi/src/client/vendor/vylocity-game-engine/vylo.client.js +19 -0
  13. package/lib/bundle/cli/kit-game-templates/multi/src/map-types.ts +9 -0
  14. package/lib/bundle/cli/kit-game-templates/multi/src/resources/default-atlas.vyi +0 -0
  15. package/lib/bundle/cli/kit-game-templates/multi/src/resources/default-macro.vymac +27 -0
  16. package/lib/bundle/cli/kit-game-templates/multi/src/resources/main-map.vym +1 -0
  17. package/lib/bundle/cli/kit-game-templates/multi/src/server/index.ts +58 -0
  18. package/lib/bundle/cli/kit-game-templates/multi/src/server/packets/c-packets.ts +5 -0
  19. package/lib/bundle/cli/kit-game-templates/multi/src/server/s-network.ts +16 -0
  20. package/lib/bundle/cli/kit-game-templates/multi/src/server/settings.json +4 -0
  21. package/lib/bundle/cli/kit-game-templates/multi/src/server/vendor/vylocity-game-engine/vylo.server.js +1 -0
  22. package/lib/bundle/cli/kit-game-templates/multi/src/types/shared-types.ts +13 -0
  23. package/lib/bundle/cli/kit-game-templates/multi/src/vylo.d.ts +3850 -0
  24. package/lib/bundle/cli/kit-game-templates/multi/tsconfig.json +28 -0
  25. package/lib/bundle/cli/kit-game-templates/single/README.md +15 -0
  26. package/lib/bundle/cli/kit-game-templates/single/bun-build.ts +33 -0
  27. package/lib/bundle/cli/kit-game-templates/single/bun-serve.ts +27 -0
  28. package/lib/bundle/cli/kit-game-templates/single/favicon.ico +0 -0
  29. package/lib/bundle/cli/kit-game-templates/single/package.json +23 -0
  30. package/lib/bundle/cli/kit-game-templates/single/src/index.html +12 -0
  31. package/lib/bundle/cli/kit-game-templates/single/src/index.ts +37 -0
  32. package/lib/bundle/cli/kit-game-templates/single/src/map-types.ts +9 -0
  33. package/lib/bundle/cli/kit-game-templates/single/src/resources/default-atlas.vyi +0 -0
  34. package/lib/bundle/cli/kit-game-templates/single/src/resources/default-macro.vymac +27 -0
  35. package/lib/bundle/cli/kit-game-templates/single/src/resources/main-map.vym +1 -0
  36. package/lib/bundle/cli/kit-game-templates/single/src/style.css +0 -0
  37. package/lib/bundle/cli/kit-game-templates/single/src/types/vylo.d.ts +3850 -0
  38. package/lib/bundle/cli/kit-game-templates/single/src/vendor/vylocity-game-engine/vylo.client.js +19 -0
  39. package/lib/bundle/cli/kit-game-templates/single/tsconfig.json +28 -0
  40. package/lib/cli/main.d.ts +8 -0
  41. package/lib/cli/main.d.ts.map +1 -0
  42. package/lib/cli/main.js +9 -0
  43. package/lib/cli/resource-builder.d.ts +6 -0
  44. package/lib/cli/resource-builder.d.ts.map +1 -0
  45. package/lib/cli/resource-builder.js +191 -0
  46. package/lib/cli/types.d.ts +11 -0
  47. package/lib/cli/types.d.ts.map +1 -0
  48. package/lib/cli/types.js +1 -0
  49. package/lib/index.d.ts +2 -1
  50. package/lib/index.d.ts.map +1 -1
  51. package/lib/package.json +72 -0
  52. package/lib/src/cli/init.d.ts +15 -0
  53. package/lib/src/cli/init.d.ts.map +1 -0
  54. package/lib/src/cli/init.js +176 -0
  55. package/lib/src/cli/main.d.ts +13 -0
  56. package/lib/src/cli/main.d.ts.map +1 -0
  57. package/lib/src/cli/main.js +16 -0
  58. package/lib/src/cli/resource-builder.d.ts +6 -0
  59. package/lib/src/cli/resource-builder.d.ts.map +1 -0
  60. package/lib/src/cli/resource-builder.js +191 -0
  61. package/lib/src/cli/types.d.ts +11 -0
  62. package/lib/src/cli/types.d.ts.map +1 -0
  63. package/lib/src/cli/types.js +1 -0
  64. package/lib/src/events/event-system.d.ts +13 -0
  65. package/lib/src/events/event-system.d.ts.map +1 -0
  66. package/lib/src/events/event-system.js +25 -0
  67. package/lib/src/index.d.ts +8 -0
  68. package/lib/src/index.d.ts.map +1 -0
  69. package/lib/src/index.js +5 -0
  70. package/lib/src/kit.d.ts +67 -0
  71. package/lib/src/kit.d.ts.map +1 -0
  72. package/lib/src/kit.js +158 -0
  73. package/lib/src/plugins/kit-plugin.d.ts +27 -0
  74. package/lib/src/plugins/kit-plugin.d.ts.map +1 -0
  75. package/lib/src/plugins/kit-plugin.js +24 -0
  76. package/lib/src/plugins/network/index.d.ts +55 -0
  77. package/lib/src/plugins/network/index.d.ts.map +1 -0
  78. package/lib/src/plugins/network/index.js +101 -0
  79. package/lib/src/types/shared-types.d.ts +30 -0
  80. package/lib/src/types/shared-types.d.ts.map +1 -0
  81. package/lib/src/types/shared-types.js +1 -0
  82. package/lib/types/vylo.d.ts +3848 -3848
  83. package/package.json +13 -5
@@ -0,0 +1,13 @@
1
+ import type { VyloType } from '../vylo';
2
+ declare global {
3
+ /**
4
+ * The vylo manager
5
+ */
6
+ var vyM: {
7
+ [key: string]: unknown;
8
+ };
9
+ var PIXI: object;
10
+ var __PIXI_APP__: PIXI.Application;
11
+ }
12
+
13
+ export {}