@evitcastudio/kit 2.1.2 → 2.3.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.
- package/LICENSE +21 -21
- package/README.md +123 -59
- package/lib/bundle/cli/cli.js +1398 -53
- package/lib/bundle/cli/kit-game-templates/multi/README.md +5 -0
- package/lib/bundle/cli/kit-game-templates/multi/bun-build.ts +109 -0
- package/lib/bundle/cli/kit-game-templates/multi/favicon.ico +0 -0
- package/lib/bundle/cli/kit-game-templates/multi/package.json +24 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/client/c-network.ts +22 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/client/index.html +9 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/client/index.ts +45 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/client/packets/s-packets.ts +5 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/client/vendor/vylocity-game-engine/vylo.client.js +19 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/map-types.ts +9 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/resources/default-atlas.vyi +0 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/resources/default-macro.vymac +27 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/resources/main-map.vym +1 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/server/index.ts +58 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/server/packets/c-packets.ts +5 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/server/s-network.ts +16 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/server/settings.json +4 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/server/vendor/vylocity-game-engine/vylo.server.js +1 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/types/shared-types.ts +13 -0
- package/lib/bundle/cli/kit-game-templates/multi/src/vylo.d.ts +3850 -0
- package/lib/bundle/cli/kit-game-templates/multi/tsconfig.json +28 -0
- package/lib/bundle/cli/kit-game-templates/single/README.md +5 -0
- package/lib/bundle/cli/kit-game-templates/single/bun-build.ts +33 -0
- package/lib/bundle/cli/kit-game-templates/single/bun-serve.ts +28 -0
- package/lib/bundle/cli/kit-game-templates/single/favicon.ico +0 -0
- package/lib/bundle/cli/kit-game-templates/single/package.json +23 -0
- package/lib/bundle/cli/kit-game-templates/single/src/index.html +12 -0
- package/lib/bundle/cli/kit-game-templates/single/src/index.ts +37 -0
- package/lib/bundle/cli/kit-game-templates/single/src/map-types.ts +9 -0
- package/lib/bundle/cli/kit-game-templates/single/src/resources/default-atlas.vyi +0 -0
- package/lib/bundle/cli/kit-game-templates/single/src/resources/default-macro.vymac +27 -0
- package/lib/bundle/cli/kit-game-templates/single/src/resources/main-map.vym +1 -0
- package/lib/bundle/cli/kit-game-templates/single/src/style.css +0 -0
- package/lib/bundle/cli/kit-game-templates/single/src/types/vylo.d.ts +3850 -0
- package/lib/bundle/cli/kit-game-templates/single/src/vendor/vylocity-game-engine/vylo.client.js +19 -0
- package/lib/bundle/cli/kit-game-templates/single/tsconfig.json +28 -0
- package/lib/cli/init.d.ts +15 -0
- package/lib/cli/init.d.ts.map +1 -0
- package/lib/cli/init.js +190 -0
- package/lib/cli/main.d.ts +13 -0
- package/lib/cli/main.d.ts.map +1 -0
- package/lib/cli/main.js +16 -0
- package/lib/cli/resource-builder.d.ts +6 -0
- package/lib/cli/resource-builder.d.ts.map +1 -0
- package/lib/cli/resource-builder.js +191 -0
- package/lib/cli/types.d.ts +11 -0
- package/lib/cli/types.d.ts.map +1 -0
- package/lib/cli/types.js +1 -0
- package/lib/index.d.ts +2 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/plugins/network/index.d.ts +7 -0
- package/lib/plugins/network/index.d.ts.map +1 -1
- package/lib/plugins/network/index.js +18 -5
- package/lib/types/vylo.d.ts +3848 -3848
- package/package.json +13 -5
package/package.json
CHANGED
|
@@ -1,19 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evitcastudio/kit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"author": "doubleactii 56242467+doubleactii@users.noreply.github.com (https://evitcastudio.com)",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
7
|
-
"module": "lib/index.js",
|
|
7
|
+
"module": "./lib/index.js",
|
|
8
8
|
"type": "module",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./lib/index.js",
|
|
12
|
+
"types": "./lib/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
9
15
|
"description": "A single-player/multiplayer framework for the Vylocity Game Engine.",
|
|
10
|
-
"cli-description": "
|
|
16
|
+
"cli-description": "The ultimate toolkit for Vylocity game development.",
|
|
11
17
|
"keywords": [
|
|
12
18
|
"framework",
|
|
13
19
|
"multiplayer",
|
|
14
20
|
"single-player",
|
|
15
21
|
"toolkit",
|
|
16
|
-
"kit"
|
|
22
|
+
"kit",
|
|
23
|
+
"vylocity"
|
|
17
24
|
],
|
|
18
25
|
"repository": {
|
|
19
26
|
"type": "git",
|
|
@@ -25,8 +32,9 @@
|
|
|
25
32
|
"homepage": "https://github.com/EvitcaStudio/Kit",
|
|
26
33
|
"license": "MIT",
|
|
27
34
|
"scripts": {
|
|
35
|
+
"prepare": "bun run build-all",
|
|
28
36
|
"prepublishOnly": "bun run build-types && bun run build",
|
|
29
|
-
"test": "bun test
|
|
37
|
+
"test": "bun test",
|
|
30
38
|
"lint": "bun eslint ./src",
|
|
31
39
|
"pack": "bun pm pack --dry-run",
|
|
32
40
|
"build-types": "bun tsc && shx cp ./src/types/vylo.d.ts ./lib/types/vylo.d.ts",
|