forked from DevYukine/Kurasuta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "kurasuta",
"version": "2.2.0",
"description": "A Custom discord.js Sharding Library inspired by eris-sharder.",
"main": "dist/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "gulp build",
"prepare": "pnpm build"
},
"repository": {
"type": "git",
"url": "https://github.com/Dev-Yukine/Kurasuta"
},
"bugs": {
"url": "https://github.com/Dev-Yukine/Kurasuta"
},
"author": "DevYukine",
"license": "MIT",
"private": false,
"dependencies": {
"discord.js": "^12.3.0",
"node-fetch": "^2.6.0",
"veza": "^1.1.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@types/ws": "7.2.6",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.7.0",
"eslint-config-marine": "^7.2.0",
"fs-nextra": "^0.5.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^6.0.0-alpha.1",
"merge2": "^1.4.1",
"typescript": "^4.0.2"
},
"eslintConfig": {
"extends": "marine",
"rules": {
"no-eval": "off",
"no-useless-constructor": "off"
}
}
}