-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
66 lines (66 loc) · 2.18 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
{
"name": "supibot",
"version": "2.2.0",
"type": "module",
"dependencies": {
"@jprochazk/roll-dice": "^0.4.2",
"acorn-node": "^2.0.1",
"async-markov": "supinic/async-markov",
"bing-chat": "^0.2.3",
"chrono-node": "^2.7.7",
"cron": "^3.5.0",
"cytube-connector": "supinic/cytube-connector",
"discord.js": "^14.17.3",
"irc-framework": "^4.14.0",
"rss-parser": "^3.13.0",
"supi-core": "supinic/supi-core",
"track-link-parser": "supinic/track-link-parser",
"transliteration": "^2.3.5",
"vm2": "^3.9.19",
"ws": "^8.18.0"
},
"engines": {
"node": ">= 20.0"
},
"scripts": {
"build": "tsc",
"start": "tsc && yarn node --env-file=.env --enable-experimental-regexp-engine ./build/master.js",
"debug": "tsc && yarn node --env-file=.env --enable-experimental-regexp-engine --inspect=0.0.0.0:9229 --unhandled-rejections=warn ./build/master.js",
"init-database": "tsc && node init/script.js",
"auto-setup": "tsc && node --env-file=.env init/auto-setup.js",
"dev-update": "git pull origin master && yarn up supi-core@supinic/supi-core && tsc",
"prod-update": "git pull origin master && yarn workspaces focus --production -A && tsc",
"dev-deps-push": "yarn dev-update && git commit ./yarn.lock -m \"bumped dependencies\" && git pull && git push",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ncu": "yarn dlx npm-check-updates",
"test": "mocha ./tests --recursive --exit",
"coverage": "nyc yarn test"
},
"main": "build/master.js",
"author": "Supinic <supinic@protonmail.com>",
"repository": "github:Supinic/supibot",
"license": "AGPL-3.0",
"description": "Multiplatform, utility & novelty chat bot.",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"eslint": "^9.18.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"nyc": "^17.1.0",
"supi-db-init": "supinic/supi-db-init",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"nyc": {
"all": false,
"reporter": [
"text",
"html"
]
},
"packageManager": "yarn@4.6.0"
}