-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.23 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": "abebot",
"version": "1.0.0",
"description": "Bot of [@averak](https://github.com/averak)",
"main": "out/main.mjs",
"engines": {
"node": ">=16.9.0"
},
"scripts": {
"dev": "node --loader ts-node/esm src/main.mts",
"start": "node out/main.mjs",
"build": "tsc",
"lint": "eslint . --ext .mts",
"lint:fix": "eslint . --ext .mts --fix",
"format": "prettier --write ./**/*.{mts,ts,json}",
"format:check": "prettier --check ./**/*.{mts,ts,json}",
"code-check": "npm run lint && npm run format:check && npm run build",
"sort-text": "node --loader ts-node/esm src/sort-text.mts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ygkn/abebot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ygkn/abebot/issues"
},
"homepage": "https://github.com/ygkn/abebot#readme",
"private": true,
"devDependencies": {
"@tsconfig/node16-strictest-esm": "1.0.3",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"eslint": "8.26.0",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"discord.js": "14.6.0",
"dotenv": "16.0.3"
}
}