-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "kurasuta",
"version": "3.0.2",
"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": "npm run-script 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": "^13.6.0",
"node-fetch": "^2.6.2",
"veza": "^1.2.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-marine": "9.0.6",
"fs-nextra": "^0.5.1",
"gulp": "^4.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"merge2": "^1.4.1",
"typescript": "^4.6.2"
},
"eslintConfig": {
"extends": "marine/node",
"rules": {
"no-eval": "off",
"no-useless-constructor": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/ban-types": "off",
"comma-dangle": [
"off"
]
}
}
}