-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"name": "msgroom-server",
"version": "1.1.0",
"description": "A custom, better msgroom server.",
"type": "module",
"main": "dist/index.js",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "npm run build",
"build": "rimraf dist && npx tsc",
"start": "node --enable-source-maps .",
"prepare": "patch-package && ts-patch install && typia patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanderTGA/msgroom-server.git"
},
"keywords": [
"msgroom",
"server",
"msgroom-server",
"windows96",
"windows-96",
"w96",
"win96"
],
"author": "NanderTGA <[email protected]> (https://nandertga.ddns.net/)",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/NanderTGA/msgroom-server/issues"
},
"homepage": "https://github.com/NanderTGA/msgroom-server#readme",
"dependencies": {
"express": "^4.18.3",
"markdown-it": "^14.1.0",
"minimal-discord-webhook-node": "^1.0.1",
"msgroom": "^2.0.1-14",
"patch-package": "^8.0.0",
"random": "^4.1.0",
"socket.io": "^4.7.4",
"tslib": "^2.6.2",
"typia": "^5.4.14"
},
"devDependencies": {
"@nandertga/eslint-config": "^3.1.2",
"@types/express": "^4.17.21",
"@types/markdown-it": "^14.1.1",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"typescript": "^5.3.2"
}
}