@markind-gg/come-come 0.1.0 → 1.0.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/dist/manifest.json +36 -36
- package/package.json +4 -2
package/dist/manifest.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"id": "come-come",
|
|
3
|
-
"modes": [
|
|
4
|
-
{ "id": "ffa", "name": "Free-for-all", "kind": "ffa", "minPlayers": 1, "maxPlayers": 4 },
|
|
5
|
-
{
|
|
6
|
-
"id": "coop",
|
|
7
|
-
"name": "Co-op",
|
|
8
|
-
"kind": "coop",
|
|
9
|
-
"minPlayers": 1,
|
|
10
|
-
"maxPlayers": 4,
|
|
11
|
-
"teams": [
|
|
12
|
-
{ "id": "crew", "name": "Crew", "color": "emerald", "minSize": 1, "maxSize": 4 }
|
|
13
|
-
]
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
"id": "teamvs",
|
|
17
|
-
"name": "Team VS",
|
|
18
|
-
"kind": "teamVs",
|
|
19
|
-
"minPlayers": 4,
|
|
20
|
-
"maxPlayers": 8,
|
|
21
|
-
"teams": [
|
|
22
|
-
{ "id": "red", "name": "Red", "color": "rose", "minSize": 1, "maxSize": 4 },
|
|
23
|
-
{ "id": "gold", "name": "Gold", "color": "amber", "minSize": 1, "maxSize": 4 }
|
|
24
|
-
]
|
|
25
|
-
}
|
|
26
|
-
],
|
|
27
|
-
"maps": [
|
|
28
|
-
{ "id": "Yellow", "name": "Yellow", "preview": "maps/yellow.webp" },
|
|
29
|
-
{ "id": "Green", "name": "Green", "preview": "maps/green.webp" },
|
|
30
|
-
{ "id": "Blue", "name": "Blue", "preview": "maps/blue.webp" },
|
|
31
|
-
{ "id": "Red", "name": "Red", "preview": "maps/red.webp" },
|
|
32
|
-
{ "id": "White", "name": "White", "preview": "maps/white.webp" },
|
|
33
|
-
{ "id": "Black", "name": "Black", "preview": "maps/black.webp" },
|
|
34
|
-
{ "id": "All", "name": "All", "preview": "maps/all.webp" }
|
|
35
|
-
]
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"id": "come-come",
|
|
3
|
+
"modes": [
|
|
4
|
+
{ "id": "ffa", "name": "Free-for-all", "kind": "ffa", "minPlayers": 1, "maxPlayers": 4 },
|
|
5
|
+
{
|
|
6
|
+
"id": "coop",
|
|
7
|
+
"name": "Co-op",
|
|
8
|
+
"kind": "coop",
|
|
9
|
+
"minPlayers": 1,
|
|
10
|
+
"maxPlayers": 4,
|
|
11
|
+
"teams": [
|
|
12
|
+
{ "id": "crew", "name": "Crew", "color": "emerald", "minSize": 1, "maxSize": 4 }
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"id": "teamvs",
|
|
17
|
+
"name": "Team VS",
|
|
18
|
+
"kind": "teamVs",
|
|
19
|
+
"minPlayers": 4,
|
|
20
|
+
"maxPlayers": 8,
|
|
21
|
+
"teams": [
|
|
22
|
+
{ "id": "red", "name": "Red", "color": "rose", "minSize": 1, "maxSize": 4 },
|
|
23
|
+
{ "id": "gold", "name": "Gold", "color": "amber", "minSize": 1, "maxSize": 4 }
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"maps": [
|
|
28
|
+
{ "id": "Yellow", "name": "Yellow", "preview": "maps/yellow.webp" },
|
|
29
|
+
{ "id": "Green", "name": "Green", "preview": "maps/green.webp" },
|
|
30
|
+
{ "id": "Blue", "name": "Blue", "preview": "maps/blue.webp" },
|
|
31
|
+
{ "id": "Red", "name": "Red", "preview": "maps/red.webp" },
|
|
32
|
+
{ "id": "White", "name": "White", "preview": "maps/white.webp" },
|
|
33
|
+
{ "id": "Black", "name": "Black", "preview": "maps/black.webp" },
|
|
34
|
+
{ "id": "All", "name": "All", "preview": "maps/all.webp" }
|
|
35
|
+
]
|
|
36
|
+
}
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markind-gg/come-come",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
8
10
|
"scripts": {
|
|
9
11
|
"dev": "vite",
|
|
10
12
|
"prebuild": "tsx scripts/generate-map-thumbs.mts",
|