-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
executable file
·100 lines (100 loc) · 3.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "kaetram",
"version": "0.5.5",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"author": "OmniaDev",
"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 4 -piv run",
"dev": "yarn packages dev",
"hub": "yarn packages hub",
"start": "yarn packages start",
"build": "yarn packages build",
"lint:script": "eslint --cache packages/**/*.{ts,astro} --ignore-path .gitignore",
"lint:style": "stylelint --cache packages/**/*.{scss,astro} --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",
"replacer": "yarn packages replacer"
},
"lint-staged": {
"*.{ts,astro}": "eslint --cache --fix",
"*.{scss,astro}": "stylelint --cache --fix"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.1.3",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-astro": "^0.29.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-order-aesthetic": "^1.0.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.29",
"postcss-custom-media": "^10.0.0",
"postcss-html": "^1.5.0",
"postcss-preset-env": "^9.1.3",
"postcss-value-parser": "^4.2.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"stylelint": "^15.10.3",
"stylelint-config-astro": "^1.0.4",
"stylelint-config-clean-order": "^5.2.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-scss": "^11.0.0",
"typescript": "^5.2.2"
},
"resolutions": {
"sharp": "^0.32.1"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": "^18.14.1 || ^20.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"
]
}