-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·70 lines (70 loc) · 2.27 KB
/
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
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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "kaetram",
"version": "2.0.1",
"private": true,
"author": "Veradictus",
"description": "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. The codebase is simple, clean, and intuitive, and is intended to be used as a learning tool. The original idea is based on Little Workshop's demo game - BrowserQuest. The assets have remained the same, but the code itself has been completely wiped and redone from the ground up.",
"homepage": "https://kaetram.com/",
"scripts": {
"packages": "yarn workspaces foreach --exclude kaetram -piv run",
"dev": "yarn packages dev",
"run": "yarn packages run",
"start": "yarn packages start",
"build": "yarn packages build",
"lint": "eslint \"./packages/**/*.ts\"",
"test": "",
"helper": "yarn packages helper",
"map": "yarn packages map",
"watcher": "yarn packages watcher"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@yarnpkg/sdks": "^2.4.1-rc.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-unicorn": "^34.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"postcss": "^8.3.6",
"postcss-value-parser": "^4.1.0",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"typescript": "^4.3.5"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=12.0.0"
},
"repository": "git+https://github.com/Veradictus/Kaetram-Open.git",
"bugs": {
"url": "https://github.com/Veradictus/Kaetram-Open/issues"
},
"keywords": [
"2d",
"2d-game",
"browserquest",
"demo",
"game",
"game-2d",
"game-development",
"game-engine",
"game-server",
"gamedev",
"html5",
"html5-canvas",
"html5-game",
"mmo",
"multiplayer",
"open-source",
"region",
"rendering-engine",
"taptapadventure",
"tileset"
],
"license": "MPL-2.0"
}