forked from miscord/miscord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.13 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@insomnia-dev/miscord",
"version": "5.1.1",
"description": "Facebook Messenger to Discord bridge",
"main": "src/index.ts",
"scripts": {
"start": "node dist/bin/index.js",
"dev": "ts-node src/bin/index.ts",
"test": "eslint --ext .js,.ts .",
"build": "node dist/bin/build.js",
"clean": "shx rm -rf dist/",
"compile": "tsc",
"prepare": "npm run clean && npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/miscord/miscord/"
},
"homepage": "https://miscord.net",
"keywords": [
"messenger",
"discord",
"javascript",
"discord.js",
"bridge",
"bot"
],
"bin": {
"miscord": "dist/bin/index.js"
},
"author": {
"name": "ptrcnull",
"email": "[email protected]",
"url": "https://ptrcnull.me/"
},
"license": "MIT",
"dependencies": {
"@sentry/node": "^5.25.0",
"basic-auth": "^2.0.1",
"chalk": "^3.0.0",
"discord.js": "^11.5.1",
"dot-prop": "^5.3.0",
"emoji-strip": "^1.0.1",
"fastify": "^2.11.0",
"fastify-static": "^2.5.1",
"fs-extra": "^8.1.0",
"is-docker": "^2.1.1",
"is-npm": "^4.0.0",
"js-yaml": "^3.14.0",
"libfb": "^2.3.5",
"minimist": "^1.2.0",
"node-fetch": "^2.6.1",
"remove-accents": "^0.4.2",
"semver": "^7.3.2",
"strip-ansi": "^6.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@types/archiver": "^3.1.1",
"@types/basic-auth": "^1.1.2",
"@types/extract-zip": "^1.6.2",
"@types/fs-extra": "^8.0.1",
"@types/js-yaml": "^3.12.5",
"@types/node": "^12.12.21",
"@types/node-fetch": "^2.5.7",
"@types/semver": "^6.2.0",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "2",
"archiver": "^3.1.1",
"eslint": "6",
"eslint-config-standard-with-typescript": "^15.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-standard": "4",
"extract-zip": "^1.6.7",
"gh-release": "^3.5.0",
"pkg": "^4.4.9",
"shx": "^0.3.2",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"pkg": {
"assets": "static/**/*"
}
}