-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.23 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.23 KB
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
{
"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",
"chrono-node": "^2.9.0",
"cron": "^4.4.0",
"cytube-connector": "supinic/cytube-connector",
"discord.js": "14.26.1",
"irc-framework": "^4.14.0",
"rss-parser": "^3.13.0",
"supi-core": "supinic/supi-core",
"track-link-parser": "supinic/track-link-parser",
"transliteration": "^2.6.1",
"vm2": "^3.10.5",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"engines": {
"node": ">= 24.0"
},
"scripts": {
"build": "tsc",
"check": "yarn clean && tsc --incremental false --composite false && yarn lint && yarn test",
"clean": "rm -f ./tests/test-utils.js && find ./tests -type f -name \"*.test.js\" -delete && find ./tests -type d -name build -prune -exec rm -r -- {} +",
"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",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"ncu": "yarn dlx npm-check-updates",
"test": "node --test-reporter=dot --import ./tests/register-loader.mjs --experimental-test-module-mocks --test",
"indev": "yarn remove supi-core && yarn add supi-core@supinic/supi-core",
"validate:config": "node ./build/utils/validate-config.js"
},
"main": "build/master.js",
"author": "Supinic <supinic@protonmail.com>",
"repository": "github:Supinic/supibot",
"license": "AGPL-3.0",
"description": "Multiplatform, utility & novelty chat bot.",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.2.0",
"eslint-plugin-unicorn": "^64.0.0",
"globals": "^17.4.0",
"supi-db-init": "supinic/supi-db-init",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"nyc": {
"all": false,
"reporter": [
"text",
"html"
]
},
"packageManager": "yarn@4.13.0"
}