-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·87 lines (87 loc) · 2.92 KB
/
package.json
File metadata and controls
executable file
·87 lines (87 loc) · 2.92 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "kaetram",
"version": "2.5.1",
"private": true,
"packageManager": "yarn@4.0.0-rc.40",
"author": "Veradictus",
"description": "Kaetram is an open-source game-engine created to aid those interested in entering the game development realm. 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/",
"license": "MPL-2.0",
"scripts": {
"postinstall": "husky install",
"packages": "FORCE_COLOR=true yarn workspaces foreach --no-private -j 3 -piv run",
"dev": "yarn packages dev",
"hub": "yarn packages hub",
"start": "yarn packages start",
"build": "yarn packages build",
"lint:script": "eslint packages/**/*.ts --ignore-path .gitignore",
"lint:style": "stylelint packages/**/*.scss --ignore-path .gitignore",
"lint:fix": "yarn lint:script --fix && yarn lint:style --fix",
"lint": "yarn lint:script && yarn lint:style",
"test:run": "yarn packages test:run",
"test:open": "yarn packages test:open",
"map": "yarn packages map"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.scss": "stylelint --cache --fix"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/cors": "^2",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-order-aesthetic": "^1.0.5",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^45.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"postcss-assets": "^6.0.0",
"postcss-value-parser": "^4.2.0",
"prettier": "^2.8.1",
"stylelint": "^14.16.1",
"typescript": "^5.0.4"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "^14.19.0 || ^16.10.0 || ^18.0.0 || ^19.0.0"
},
"repository": "git+https://github.com/Kaetram/Kaetram-Open.git",
"bugs": {
"url": "https://github.com/Kaetram/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"
],
"dependencies": {
"cors": "^2.8.5",
"stripe": "^19.3.0"
}
}