-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
27 lines (27 loc) · 843 Bytes
/
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
{
"name": "discord-temp-channels",
"version": "3.0.2",
"description": "Simple framework to facilitate the creation of a temporary voice channels system using Discord.js",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" --tab-width 4",
"lint": "tslint -p tsconfig.json",
"prepublish": "npm run build"
},
"repository": "git+https://github.com/Androz2091/discord-temp-channels.git",
"author": "Androz2091 <androz2091@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.1",
"@types/ws": "^7.2.2",
"discord.js": "^13.6.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
}
}