-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "generated-game-experiment",
"version": "0.6.1",
"type": "module",
"description": "Private experiment to create a game with cursor",
"main": "index.js",
"scripts": {
"dev": "vite --host",
"dev:mp": "VITE_MULTIPLAYER=1 vite --host",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:ci": "vitest run",
"precommit": "./scripts/validate-precommit.sh",
"mcp": "github-mcp-server",
"mcp:help": "github-mcp-server --help",
"git:status": "gstatus",
"git:flow": "gflow"
},
"engines": {
"node": ">=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commjoen/generated-game-experiment.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/commjoen/generated-game-experiment/issues"
},
"homepage": "https://github.com/commjoen/generated-game-experiment#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.1",
"github-mcp-server": "^1.8.7",
"jsdom": "^29.0.2",
"node-fetch": "^3.3.2",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vite-plugin-sri": "^0.0.2",
"vitest": "^4.1.4"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"ws": "^8.20.0"
}
}