@markind-gg/pictionary 1.0.22
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/main.js +14024 -0
- package/dist/manifest.json +68 -0
- package/dist/maps/actions.webp +0 -0
- package/dist/maps/all.webp +0 -0
- package/dist/maps/animals.webp +0 -0
- package/dist/maps/food.webp +0 -0
- package/dist/maps/objects.webp +0 -0
- package/dist/maps/places.webp +0 -0
- package/dist/thumb.webp +0 -0
- package/package.json +39 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "pictionary",
|
|
3
|
+
"modes": [
|
|
4
|
+
{
|
|
5
|
+
"id": "ffa",
|
|
6
|
+
"name": "Free-for-all",
|
|
7
|
+
"kind": "ffa",
|
|
8
|
+
"minPlayers": 2,
|
|
9
|
+
"maxPlayers": 10
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"id": "teamvs",
|
|
13
|
+
"name": "Team VS",
|
|
14
|
+
"kind": "teamVs",
|
|
15
|
+
"minPlayers": 2,
|
|
16
|
+
"maxPlayers": 10,
|
|
17
|
+
"teams": [
|
|
18
|
+
{
|
|
19
|
+
"id": "red",
|
|
20
|
+
"name": "Red",
|
|
21
|
+
"color": "red",
|
|
22
|
+
"minSize": 1,
|
|
23
|
+
"maxSize": 5
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"id": "blue",
|
|
27
|
+
"name": "Blue",
|
|
28
|
+
"color": "blue",
|
|
29
|
+
"minSize": 1,
|
|
30
|
+
"maxSize": 5
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"maps": [
|
|
36
|
+
{
|
|
37
|
+
"id": "all",
|
|
38
|
+
"name": "Everything",
|
|
39
|
+
"preview": "maps/all.webp"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "animals",
|
|
43
|
+
"name": "Animals",
|
|
44
|
+
"preview": "maps/animals.webp"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"id": "objects",
|
|
48
|
+
"name": "Objects",
|
|
49
|
+
"preview": "maps/objects.webp"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"id": "actions",
|
|
53
|
+
"name": "Actions",
|
|
54
|
+
"preview": "maps/actions.webp"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"id": "food",
|
|
58
|
+
"name": "Food",
|
|
59
|
+
"preview": "maps/food.webp"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"id": "places",
|
|
63
|
+
"name": "Places",
|
|
64
|
+
"preview": "maps/places.webp"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"version": "1.0.22"
|
|
68
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/thumb.webp
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@markind-gg/pictionary",
|
|
3
|
+
"version": "1.0.22",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/main.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"dev": "vite",
|
|
12
|
+
"thumbs": "tsx scripts/generate-map-thumbs.mts",
|
|
13
|
+
"prebuild": "npm run thumbs",
|
|
14
|
+
"build": "vite build",
|
|
15
|
+
"prebuild:shell": "npm run thumbs",
|
|
16
|
+
"build:shell": "vite build --mode shell",
|
|
17
|
+
"test": "vitest run",
|
|
18
|
+
"typecheck": "tsc --noEmit"
|
|
19
|
+
},
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"react": "^19.0.0",
|
|
22
|
+
"react-dom": "^19.0.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@testing-library/jest-dom": "^6.4.0",
|
|
26
|
+
"@testing-library/react": "^16.0.0",
|
|
27
|
+
"@testing-library/user-event": "^14.5.0",
|
|
28
|
+
"@types/node": "^24.13.3",
|
|
29
|
+
"@types/react": "^19.0.0",
|
|
30
|
+
"@types/react-dom": "^19.0.0",
|
|
31
|
+
"@vitejs/plugin-react": "^4.3.0",
|
|
32
|
+
"jsdom": "^24.0.0",
|
|
33
|
+
"sharp": "^0.34.5",
|
|
34
|
+
"tsx": "^4.22.3",
|
|
35
|
+
"typescript": "^5.5.0",
|
|
36
|
+
"vite": "^5.4.0",
|
|
37
|
+
"vitest": "^2.0.0"
|
|
38
|
+
}
|
|
39
|
+
}
|