-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.71 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
{
"name": "watch-guilds",
"version": "1.0.0",
"description": "Monitoring of emojis, stickers, etc. on the Discord guilds and listing or notifying them in a text channel.",
"license": "MIT",
"author": "Tomachi <[email protected]>",
"private": true,
"main": "output/index.js",
"repository": "[email protected]:jaoafa/watch-guilds.git",
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/main.ts",
"dev": "ts-node-dev --poll -r tsconfig-paths/register ./src/main.ts",
"package": "run-s clean compile packing",
"packing": "ncc build ./dist/main.js -o output/",
"compile": "tsc -p .",
"clean": "rimraf dist output",
"generate-schema": "typescript-json-schema --required tsconfig.json Configuration -o schema/Configuration.json",
"lint": "run-p -c lint:prettier lint:eslint lint:tsc",
"lint:prettier": "prettier --check src",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:tsc": "tsc",
"fix": "run-s fix:prettier fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src"
},
"devDependencies": {
"@book000/eslint-config": "1.7.78",
"@book000/node-utils": "1.13.338",
"@discordjs/builders": "1.9.0",
"@types/node": "22.7.5",
"@vercel/ncc": "0.38.2",
"discord.js": "14.16.3",
"eslint": "9.14.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.13.1",
"eslint-plugin-promise": "7.1.0",
"natsort": "2.0.3",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.6.3",
"typescript-json-schema": "0.65.1",
"yarn-run-all": "3.1.1"
},
"packageManager": "[email protected]"
}