forked from AL1L/discord-term
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 913 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "discord-term",
"version": "1.3.0",
"description": "Extensible Discord terminal client",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/index.js",
"prepublish": "npm run build",
"test": "npm run build"
},
"keywords": [
"discord",
"discord-terminal",
"discord-client",
"discordjs"
],
"author": "Atlas <[email protected]>",
"license": "MIT",
"dependencies": {
"blessed": "^0.1.81",
"chalk": "^2.4.2",
"clipboardy": "^2.1.0",
"discord.js": "^12.3.1"
},
"devDependencies": {
"@types/node": "^12.7.3",
"@types/blessed": "^0.1.12",
"typescript": "^4.0.2"
},
"files": [
"dist",
"themes",
"plugins"
],
"bin": {
"dterm": "dist/index.js"
}
}