-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "STOWAWAY",
"version": "1.1.3",
"description": "E2E PGP encryption layer for Discord via bots",
"license": "WTFPL",
"author": "Klokov",
"main": "./src/index.js",
"bin": "./src/index.js",
"pkg": {
"assets": [
"node_modules/blessed/**/*",
"node_modules/@discord.js/**/*",
"node_modules/discord.js/**/*"
]
},
"dependencies": {
"blessed": "0.1.81",
"discord.js": "^12.5.3",
"lokijs": "^1.5.12",
"openpgp": "^5.0.0-2"
},
"scripts": {
"build": "pkg -t node14-win-x64 --public -o STOWAWAY .",
"build-all": "pkg -t node14-win,node14-linux,node14-macos --public --out-path releases .",
"prep": "prepare.bat",
"deadhead": "node --trace-warnings deadhead.js",
"start": "node src/index.js",
"about": "node src/index.js --about",
"channels": "node src/index.js --channels",
"token": "node src/index.js --token",
"help": "node src/index.js --help",
"version": "node src/index.js --version",
"query": "node src/query.js"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/eslint-parser": "^7.13.14",
"@babel/preset-env": "^7.14.1",
"eslint": "^7.25.0"
}
}