-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 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
57
58
{
"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.0",
"@types/node": "^25.3.5",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.3",
"jsdom": "^28.1.0",
"node-fetch": "^3.3.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-sri": "^0.0.2",
"vitest": "^4.0.18"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"github-mcp-server": "^1.8.7",
"install": "^0.13.0",
"npm": "^11.11.0",
"ws": "^8.19.0"
}
}