-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 933 Bytes
/
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
{
"name": "wikibot",
"description": "moegirlpedia bot",
"main": "index.js",
"engines": {
"node": ">= 20.*"
},
"scripts": {
"test": "node ./src/Personal/test.js",
"lint": "eslint src --exit-on-fatal-error --max-warnings 0 && prettier --check '**/*.yaml' '!data/*.yaml'",
"format": "eslint src --fix && prettier --write **/*.yaml **/*.json !data/*"
},
"author": "hoshimi",
"license": "MIT",
"dependencies": {
"@octokit/core": "^6.1.1",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"cheerio": "^1.0.0",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"moment": "^2.30.1",
"wiki-saikou": "^3.4.0",
"wikiparser-node": "^1.14.0"
},
"type": "module",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/jsonpath": "^0.2.4",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2"
}
}