-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "botot2",
"version": "4.0.1",
"description": "A chatbot for Misskey with Markov chain",
"main": "index.js",
"scripts": {
"start": "node ./built",
"schema": "typescript-json-schema ./src/config.ts Config -o config-schema.json",
"build": "tsc && node meta.js",
"lint": "eslint .",
"lint:prettier": "prettier --check '**/*.{js,ts}'",
"fix": "npm run fix:eslint; npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier --write '**/*.{js,ts}'",
"test": "tsc"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "20.17.12",
"@types/ws": "8.5.13",
"@types/xml2js": "0.4.14",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-standard": "5.0.0",
"prettier": "2.8.8",
"tslib": "2.8.1",
"typescript-json-schema": "0.55.0"
},
"dependencies": {
"asciimath-to-latex": "^0.5.0",
"graphviz": "0.0.9",
"markov-ja": "^1.0.10",
"mathjax-node": "^2.1.1",
"moment": "^2.29.2",
"node-cabocha": "0.0.5",
"reconnecting-websocket": "^4.2.0",
"request-promise-native": "^1.0.8",
"svg2png": "^4.1.1",
"timeout-as-promise": "^1.0.0",
"typescript": "^5.0.0",
"ws": "^8.0.0",
"xml2js": "^0.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}