-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
108 lines (108 loc) · 2.75 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
101
102
103
104
105
106
107
108
{
"name": "@theflyingape/dankdomain",
"version": "3.3",
"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": ">=18.17"
},
"maintainers": [
{
"name": "Robert Hurst",
"email": "theflyingape@gmail.com",
"url": "https://robert.hurst-ri.us"
}
],
"private": false,
"publisher": "theflyingape <theflyingape@gmail.com>",
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "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-ri.us/ronald"
}
],
"dependencies": {
"animate.css": "^4.1.1",
"better-sqlite3": "^11.3.0",
"chokidar": "^3.6.0",
"country-flag-emoji": "^1.0.3",
"express": "^4.21.0",
"fast-geoip": "^1.1.88",
"fs-extra": "^11.2.0",
"got": "^11.8.6",
"net-keepalive": "^4.0.9",
"node-pty": "^1.0.0",
"nodemailer": "^6.9.15",
"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.18.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-unicode11": "^0.6.0",
"xterm-addon-web-links": "^0.9.0",
"xterm-addon-webgl": "^0.16.0",
"xvt": "^1.5.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/browserify": "^12.0.40",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"@types/nodemailer": "^6.4.16",
"@types/nodemailer-smtp-transport": "^2.7.8",
"@types/sprintf-js": "^1.1.4",
"@types/ws": "^8.5.12",
"browserify": "^17.0.0",
"eslint": "^9.10.0",
"typescript": "^5.6.2",
"watchify": "^4.0.0"
},
"types": "src",
"scripts": {
"build": "source ~/.bashrc && nvm use && tsc -b --verbose && browserify game/portal/client.js -o game/portal/static/bundle.js",
"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"
}
}