forked from plamzi/MUDPortal-Web-App
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "mud-web-client",
"version": "2.0.0",
"description": "Web client through websockets",
"type": "module",
"keywords": [
"mud",
"client",
"websockets"
],
"author": "plamzi <[email protected]>",
"contributors": [
"plamzi <[email protected]>",
"neverbot <[email protected]>"
],
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint .",
"lint:fix": "npx eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maldorne/mud-web-client.git"
},
"license": "gpl-3.0",
"bugs": {
"url": "https://github.com/maldorne/mud-web-client/issues"
},
"homepage": "https://github.com/maldorne/mud-web-client#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.25.8",
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jsonc-eslint-parser": "^2.4.0",
"prettier": "^3.3.3"
}
}