-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.55 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
{
"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",
"test": "NODE_ENV=test mocha --require tsx 'test/**/*.test.ts'"
},
"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.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"golden-layout": "^2.6.0",
"vue": "^3.5.40"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@vitejs/plugin-vue": "^6.0.8",
"chai": "^6.2.2",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.8.0",
"mocha": "^11.7.6",
"prettier": "^3.9.6",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vue-tsc": "^3.3.8"
}
}