-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "mud-web-client",
"version": "4.1.0",
"description": "Web-based MUD client (Vue 3 + xterm.js)",
"type": "module",
"keywords": [
"mud",
"client",
"websockets",
"xterm",
"vue"
],
"author": "neverbot <ivan@neverbot.com>",
"contributors": [
"plamzi <plamzi@gmail.com>",
"neverbot <ivan@neverbot.com>"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.vue",
"lint:fix": "eslint . --ext .ts,.vue --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",
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"golden-layout": "^2.6.0",
"vue": "^3.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-prettier": "^5.2.0",
"eslint-plugin-vue": "^10.8.0",
"globals": "^16.0.0",
"prettier": "^3.8.0",
"typescript": "^5.8.0",
"typescript-eslint": "^8.32.0",
"vite": "^6.2.0",
"vue-tsc": "^2.2.0"
}
}