-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 940 Bytes
/
package.json
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
{
"name": "thegame",
"version": "1.0.0",
"description": "text game engine",
"main": "src/index.ts",
"scripts": {
"build": "esbuild ./src/index.ts --bundle --minify --sourcemap --platform=browser --target=chrome58,firefox57,safari11,edge16 --outdir=.build",
"dev": "esbuild ./src/index.ts --bundle --sourcemap --watch --platform=browser --target=chrome58,firefox57,safari11,edge16 --outdir=.build",
"tsc": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marakoss/js-game-engine.git"
},
"author": "Marek Králík",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/marakoss/js-game-engine/issues"
},
"homepage": "https://github.com/marakoss/js-game-engine#readme",
"dependencies": {
"esbuild": "^0.15.10",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/node": "^18.7.23"
}
}