-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1022 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1022 Bytes
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
{
"name": "bomberman-js",
"private": true,
"version": "2.0.0",
"description": "A small simulator popular game Bomberman (NES) developed in JavaScript using Phaser.js",
"main": "index.html",
"type": "module",
"scripts": {
"dev": "vite --config vite/config.dev.js",
"build": "tsc && vite build --config vite/config.prod.js",
"preview": "vite preview",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pr0mming/Bomberman-JS.git"
},
"author": "pr0mming",
"bugs": {
"url": "https://github.com/pr0mming/Bomberman-JS/issues"
},
"homepage": "https://github.com/pr0mming/Bomberman-JS#readme",
"dependencies": {
"phaser": "^3.90.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0"
}
}