This repository has been archived by the owner on Aug 18, 2023. It is now read-only.
generated from zuikaku-project/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.94 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "zuikaku",
"version": "4.0.0",
"description": "The best Discord Bot that can serve you everytime, Fast, Secure, Always on, Best Audio, No Configuration",
"main": "./dist/ZuikakuBase.js",
"type": "module",
"scripts": {
"build": "rimraf dist && npm run lint && npm run compile",
"compile": "swc src -d dist",
"compile:ts": "tsc --build tsconfig.json",
"lint": "npm run pretty && eslint src --ext .ts",
"lint:fix": "npm run pretty:write && eslint src --ext .ts --fix",
"pretty": "prettier --check src/**/*.ts",
"pretty:write": "prettier --write src/**/*.ts",
"start": "node --es-module-specifier-resolution=node -r tsconfig-paths/register .",
"vps": "npm run build && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zuikaku-project/zuikaku.git"
},
"keywords": [],
"author": "noxzym",
"license": "agpl-3.0",
"bugs": {
"url": "https://github.com/zuikaku-project/zuikaku/issues"
},
"homepage": "https://github.com/zuikaku-project/zuikaku#readme",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"imports": {
"#zuikaku/*": "./dist/*"
},
"eslintConfig": {
"extends": [
"@clytage-pkg/eslint-config/typescript",
"prettier"
],
"plugins": [
"prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"class-methods-use-this": 0,
"@typescript-eslint/naming-convention": 0
},
"ignorePatterns": [
"dist/*"
]
},
"prettier": {
"tabWidth": 4,
"trailingComma": "none",
"arrowParens": "avoid"
},
"devDependencies": {
"@clytage-pkg/eslint-config": "1.2.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.204",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/js-yaml": "4.0.5",
"@types/node": "17.0.18",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"eslint": "8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"tsconfig-paths": "^4.0.0",
"typescript": "4.7.3"
},
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"colorette": "2.0.19",
"cors": "2.8.5",
"dayjs": "1.11.3",
"discord-api-types": "0.34.0",
"discord.js": "13.8.0",
"express": "4.18.1",
"js-yaml": "4.1.0",
"mongoose": "6.4.0",
"petitio": "1.4.0",
"shoukaku": "3.1.0",
"tslib": "2.4.0"
},
"optionalDependencies": {
"bufferutil": "4.0.6",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "5.0.9",
"zlib-sync": "0.1.7"
}
}