Tantawi65 commited on
Commit ·
17c508c
1
Parent(s): b0b8ff0
Add type:module to root and shared package.json
Browse files- package.json +1 -0
- shared/package.json +3 -0
package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
{
|
| 2 |
"name": "mummy-card-game",
|
| 3 |
"version": "1.0.0",
|
|
|
|
| 4 |
"description": "Multiplayer Egyptian-themed card game with real-time gameplay",
|
| 5 |
"scripts": {
|
| 6 |
"install:all": "cd client && npm install && cd ../server && npm install",
|
|
|
|
| 1 |
{
|
| 2 |
"name": "mummy-card-game",
|
| 3 |
"version": "1.0.0",
|
| 4 |
+
"type": "module",
|
| 5 |
"description": "Multiplayer Egyptian-themed card game with real-time gameplay",
|
| 6 |
"scripts": {
|
| 7 |
"install:all": "cd client && npm install && cd ../server && npm install",
|
shared/package.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"type": "module"
|
| 3 |
+
}
|