generated from NezuChan/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.62 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
57
58
59
{
"name": "nezly",
"version": "2.0.0",
"description": "A REST Proxy container for the Lavalink REST API.",
"main": "dist/index.js",
"scripts": {
"compile": "rimraf dist && tsc --outDir dist",
"lint": "eslint api/**/*.ts",
"lint:fix": "eslint api/**/*.ts --fix",
"start:dev": "npm run compile && node dist"
},
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@hazmi35/eslint-config": "^8.7.1",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.24",
"@types/express": "^4.17.15",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"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/no-extraneous-class": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-useless-constructor": "off",
"class-methods-use-this": "off"
}
},
"dependencies": {
"@kirishima/rest": "^0.2.5",
"@sapphire/result": "^2.6.0",
"@sapphire/time-utilities": "^1.7.8",
"@sapphire/utilities": "^3.11.0",
"dotenv": "^16.0.3",
"fastify": "^4.10.2",
"lavalink-api-types": "^1.1.5",
"pino": "^8.8.0",
"pino-pretty": "^9.1.1",
"reflect-metadata": "^0.1.13",
"undici": "^5.14.0"
}
}