-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "discord-new-threads",
"version": "2.0.0",
"description": "Notifies the text channel when a new thread is created in Discord.",
"homepage": "https://github.com/jaoafa/discord-new-threads",
"bugs": {
"url": "https://github.com/jaoafa/discord-new-threads/issues"
},
"license": "MIT",
"author": "Tomachi <tomachi@tomacheese.com>",
"private": true,
"main": "dist/main.js",
"repository": {
"url": "git@github.com:jaoafa/discord-new-threads.git",
"type": "git"
},
"scripts": {
"start": "tsx ./src/main.ts",
"fix:prettier": "prettier --write src",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:prettier": "prettier --check src",
"fix": "run-z fix:prettier fix:eslint",
"lint:tsc": "tsc",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"dev": "tsx watch ./src/main.ts"
},
"devDependencies": {
"@book000/eslint-config": "1.7.131",
"@book000/node-utils": "1.13.425",
"@types/node": "22.7.5",
"discord.js": "14.17.3",
"eslint": "9.18.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.4.2",
"run-z": "2.1.0",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.15.4"
}