-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "@ticketybot/tickety",
"version": "1.0.0",
"description": "A fully customizable discord ticket bot created for large support guilds",
"main": "dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc -p .",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tommyshelby9121/TicketyBot.git"
},
"keywords": [
"nodejs",
"discordjs",
"typescript"
],
"author": "Sycrixx",
"license": "MIT",
"bugs": {
"url": "https://github.com/tommyshelby9121/TicketyBot/issues"
},
"homepage": "https://github.com/tommyshelby9121/TicketyBot#readme",
"dependencies": {
"discord.js": "^12.5.1",
"jsdom": "^16.4.0"
},
"devDependencies": {
"@types/jsdom": "^16.2.5",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}