-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "conniebot",
"version": "4.5.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xsduan/conniebot.git"
},
"scripts": {
"lint": "eslint ./ --ignore-path .gitignore",
"fix": "eslint ./ --ignore-path .gitignore --fix",
"build": "node build",
"start": "node build -s",
"forever": "node build -f",
"test": "npm run lint"
},
"description": "Does various language stuff.",
"contributors": [
"Shane Duan (https://github.com/xsduan)",
"bbrk24 (https://github.com/bbrk24)"
],
"dependencies": {
"@types/config": "^3.3.0",
"@types/js-yaml": "^4.0.5",
"@types/node": ">=18.11.1",
"config": "^3.3.8",
"discord.js": "^14.13.0",
"format-duration": "^3.0.2",
"js-yaml": "^4.1.0",
"minimist": "^1.2.8",
"node-fetch": "^3.2.10",
"npmlog": "^7.0.1",
"postgrator": "^7.1.1",
"sql-template-strings": "^2.2.2",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"typescript": "~5.4.5",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.45.0",
"standard": "^17.0.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"encoding": "~0.1.13",
"erlpack": "~0.1.4",
"utf-8-validate": ">=5.0.8",
"zlib-sync": "~0.1.7"
},
"nodemonConfig": {
"ignore": [
"*.sqlite"
],
"exitcrash": true
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"engineStrict": true,
"type": "module"
}