-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
50 lines (50 loc) · 1.81 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
{
"name": "discord-chat-mirror",
"version": "2.0.0",
"description": "Script that relays all messages from the target discord server's channel to another one using webhook. The free & open-source edition.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --cache --cache-file .eslintcache",
"lint:fix": "eslint . --cache --cache-file .eslintcache --fix",
"start": "node --env-file .env --es-module-specifier-resolution=node .",
"start:dev": "rimraf ./dist && tsc-watch --onSuccess \"node --env-file .env --es-module-specifier-resolution=node .\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stegripe/discord-chat-mirror-ext.git"
},
"author": "Stegripe <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Stegripe/discord-chat-mirror-ext/issues"
},
"homepage": "https://github.com/Stegripe/discord-chat-mirror-ext#readme",
"engines": {
"node": ">=20.6.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@stegripe/eslint-config": "1.0.1",
"@types/jsonfile": "6.1.4",
"@types/node": "22.13.4",
"@types/node-fetch": "2.6.12",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "8.14.0",
"@typescript-eslint/parser": "8.14.0",
"eslint": "9.14.0",
"rimraf": "6.0.1",
"typescript": "5.6.3"
},
"dependencies": {
"@eslint/compat": "^1.2.3",
"@ptkdev/logger": "^1.8.0",
"discord.js": "^14.18.0",
"jsonfile": "^6.1.0",
"node-fetch": "^3.3.2",
"tsc-watch": "^6.2.1",
"ws": "^8.18.0"
}
}