-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.68 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.68 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@theflyingape/dankdomain",
"version": "3.3.1",
"description": "Ɗaɳƙ Ɗoɱaiɳ: the return of Hack & Slash",
"author": "Robert Hurst",
"homepage": "https://www.ddgame.us",
"license": "MIT",
"keywords": [
"dnd-online",
"dungeon-crawler-game",
"hack-and-slash",
"multi-user-dungeon",
"roguelike-rpg-game",
"telnet-bbs",
"xterm-js"
],
"main": "main.js",
"os": [
"cros",
"linux"
],
"engines": {
"node": ">=22.21"
},
"maintainers": [
{
"name": "Robert Hurst",
"email": "theflyingape@gmail.com",
"url": "https://robert.hurst-us.net"
}
],
"private": false,
"publisher": "theflyingape <theflyingape@gmail.com>",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theflyingape/dankdomain.git"
},
"bugs": {
"url": "https://github.com/theflyingape/dankdomain/issues"
},
"contributors": [
{
"name": "Ronald Hurst",
"email": "ronhurst39@gmail.com",
"url": "https://robert.hurst-us.net/ronald"
}
],
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"animate.css": "^4.1.1",
"better-sqlite3": "^12.5.0",
"chokidar": "^3.6.0",
"country-flag-emoji": "^1.0.3",
"express": "^5.2.1",
"fast-geoip": "^1.1.88",
"fs-extra": "^11.3.3",
"got": "^11.8.6",
"net-keepalive": "^4.0.24",
"node-pty": "^1.1.0",
"nodemailer": "^7.0.12",
"nodemailer-smtp-transport": "^2.7.4",
"romanize": "^1.1.1",
"sprintf-js": "^1.1.3",
"telnet-socket": "^0.2.4",
"title-case": "^3.0.3",
"ws": "^8.19.0",
"xvt": "^1.5.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.3",
"@types/nodemailer": "^7.0.4",
"@types/nodemailer-smtp-transport": "^2.7.8",
"@types/sprintf-js": "^1.1.4",
"@types/ws": "^8.18.1",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"watchify": "^4.0.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"types": "src",
"scripts": {
"build": "tsc -b --verbose && webpack",
"bundle": "watchify game/portal/client.js -v -o game/portal/static/bundle.js",
"clean": "rm game/files/tavern/*.txt game/users/.*.json game/users/*.json game/users/*.sql* 2> /dev/null",
"debug": "node game/portal/app",
"test": "npm run net test",
"watch": "tsc -w",
"net": "./game/portal-startup.sh",
"play": "./game/logins.sh -local",
"term": "./game/tty.sh",
"mame": "./mame/play.sh",
"postinstall": "npm run build",
"prepare": "./local-install.sh",
"stop": "killall DDnet"
}
}