This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
117 lines (117 loc) · 4.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "trixiebot",
"version": "3.10.6",
"description": "Discord Bot to query Derpibooru.org and much much more!",
"homepage": "https://trixiebot.com",
"author": {
"name": "Loneless",
"url": "https://loneless.art"
},
"repository": {
"type": "git",
"url": "https://github.com/LonelessCodes/trixiebot.git"
},
"dependencies": {
"@discordjs/opus": "^0.3.3",
"@trixiebot/ipc": "^2.1.1",
"bson": "^4.2.0",
"bufferutil": "^4.0.2",
"cat-ascii-faces": "^2.0.0",
"chalk": "^4.0.0",
"cheerio": "^1.0.0-rc.3",
"chevrotain": "^6.5.0",
"config": "^3.3.2",
"cron": "^1.8.2",
"discord.js": "^12.4.1",
"diskusage": "^1.1.3",
"dog-ascii-faces": "^2.1.3",
"emoji-name-map": "^1.2.9",
"erlpack": "github:discordapp/erlpack",
"figlet": "^1.5.0",
"file-type": "^14.7.1",
"flip-text": "^1.1.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^9.0.1",
"full-icu": "^1.3.1",
"giphy-api": "^2.0.1",
"glob-to-regexp": "^0.4.1",
"gm": "^1.23.1",
"html-encoder-decoder": "^1.3.9",
"libsodium-wrappers": "^0.7.8",
"make-plural": "^6.2.2",
"math-interval-parser": "^2.0.1",
"mime": "^2.4.6",
"moment": "^2.29.1",
"mongodb": "^3.6.2",
"nanoid": "^3.1.16",
"node-fetch": "^2.6.1",
"prism-media": "^1.2.2",
"random-number-csprng": "^1.0.2",
"read-chunk": "^3.2.0",
"source-map-support": "^0.5.19",
"tiny-text": "^1.0.1",
"tmp": "^0.2.1",
"twit": "^2.2.11",
"twitch": "^4.2.7",
"type-fest": "^0.16.0",
"utf-8-validate": "^5.0.3",
"uuid": "^8.3.1",
"veza": "^1.1.0",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@opengovsg/credits-generator": "^1.0.6",
"@types/cheerio": "^0.22.22",
"@types/config": "0.0.36",
"@types/cron": "^1.7.2",
"@types/figlet": "^1.2.1",
"@types/fluent-ffmpeg": "^2.1.16",
"@types/fs-extra": "^9.0.2",
"@types/glob-to-regexp": "^0.4.0",
"@types/gm": "^1.18.9",
"@types/mime": "^2.0.3",
"@types/mongodb": "^3.5.32",
"@types/node": "^12.19.3",
"@types/node-fetch": "^2.5.7",
"@types/tmp": "^0.2.0",
"@types/twit": "^2.2.28",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"madge": "^3.11.0",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.5"
},
"engines": {
"node": ">= 12.16.1",
"npm": ">= 6.9.0"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"lint": "eslint src/ --ext .ts,.js",
"lint:fix": "eslint src/ --ext .ts,.js --fix",
"start:watch": "cross-env NODE_ENV=development ts-node-dev --project tsconfig.json --no-notify --transpile-only src/index.ts",
"start:dev": "cross-env NODE_ENV=development node --unhandled-rejections=strict --icu-data-dir ./node_modules/full-icu dist/index.js",
"start": "cross-env NODE_ENV=production node --icu-data-dir ./node_modules/full-icu dist/index.js",
"pm2": "pm2 start npm --no-automation --name trixiebot -- start",
"pm2:dev": "pm2 start npm --no-automation --name trixiedev -- run start:dev",
"parse": "node parse.js",
"dep": "madge src/index.ts src/commands/",
"dep:circular": "madge --circular src/index.ts src/commands/",
"dep:graph": "madge --image .var/dependency-graph.svg src/index.ts src/commands/",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"license": "GPL-3.0",
"keywords": [
"discord",
"bot",
"trixie"
],
"main": "dist/index.js"
}