-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
62 lines (62 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
{
"name": "supibot",
"version": "2.2.0",
"dependencies": {
"@jprochazk/roll-dice": "^0.4.2",
"acorn-node": "^2.0.1",
"async-markov": "https://github.com/supinic/async-markov",
"bing-chat": "^0.2.3",
"chrono-node": "^2.7.6",
"cron": "^3.1.7",
"cytube-connector": "supinic/cytube-connector",
"discord.js": "^14.15.3",
"irc-framework": "^4.13.1",
"rss-parser": "^3.13.0",
"supi-core": "supinic/supi-core",
"track-link-parser": "https://github.com/supinic/track-link-parser",
"transliteration": "^2.3.5",
"vm2": "^3.9.19",
"ws": "^8.17.1"
},
"engines": {
"node": ">= 20.0"
},
"scripts": {
"build": "tsc",
"start": "tsc && node --env-file=.env --enable-experimental-regexp-engine ./build/master.js",
"debug": "tsc && 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",
"setup": "tsc && node --env-file=.env ./init/setup.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",
"test": "mocha ./tests --recursive --exit",
"coverage": "nyc yarn test"
},
"main": "build/master.js",
"author": "Supinic <[email protected]>",
"repository": "github:Supinic/supibot",
"license": "AGPL-3.0",
"description": "Multiplatform, utility & novelty chat bot.",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/eslint-parser": "^7.24.7",
"eslint": "^8.52.0",
"eslint-plugin-unicorn": "^49.0.0",
"mocha": "^10.5.2",
"nyc": "^17.0.0",
"supi-db-init": "https://github.com/supinic/supi-db-init",
"typescript": "^5.5.4"
},
"nyc": {
"all": false,
"reporter": [
"text",
"html"
]
},
"packageManager": "[email protected]"
}