generated from NezuChan/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
56
{
"name": "discord-bot-template",
"version": "1.0.0",
"description": "",
"main": "dist",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "tsup",
"start": "node -r dotenv/config dist/index.js"
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@hazmi35/eslint-config": "^8.3.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.189",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"rimraf": "^3.0.2",
"tsup": "^6.0.1",
"typescript": "^4.6.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"class-methods-use-this": "off"
}
},
"dependencies": {
"@sapphire/decorators": "^4.3.4",
"@sapphire/framework": "^3.0.0-next.fd7be0b.0",
"@sapphire/plugin-logger": "^2.2.1",
"@sapphire/utilities": "^3.6.2",
"@zhycorporg/command-context": "^1.1.1",
"backtracker": "^3.1.1",
"discord.js": "^13.7.0",
"dotenv": "^16.0.1"
}
}