-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "@setar/utils",
"version": "1.0.1",
"description": "a module to help you automate some functions",
"main": "dist/index.js",
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Setar-Bot/discord-utils.git"
},
"bugs": {
"url": "https://github.com/Setar-Bot/discord-utils/issues"
},
"homepage": "https://github.com/Setar-Bot/discord-utils#readme",
"engines": {
"node": ">=14.9.1",
"npm": ">=7.0.0"
},
"scripts": {
"build": "tsc --project ./tsconfig.json && npm run build:esm",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"build:check": "tsc --project ./tsconfig.json --noEmit --incremental false",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.{ts,js,json,yaml,yml}"
},
"keywords": [
"discord",
"discord.js",
"discord-utils",
"discordbot",
"discord-bot",
"utils",
"setar",
"setar-bot",
"setar-team"
],
"author": {
"email": "ehsan8184@gmail.com",
"name": "Ehsan Golmakani",
"url": "https://ehsan.js.org"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"gen-esm-wrapper": "^1.1.3",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"discord.js": "^13.6.0"
}
}