-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.63 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "koishi-plugin-hitokoto-sentences",
"description": "hitokoto sentences",
"version": "0.0.0",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib",
"data/*.json",
"README.md",
"LICENSE"
],
"license": "MIT",
"scripts": {
"build": "tsc && koishi-console build",
"test": "mocha -r esbuild-register -r yml-register --extension .spec.ts ./__tests__",
"lint": "eslint src/**/*.ts && yarn prettier --check",
"format": "yarn prettier --write",
"prettier": "prettier '**/*.{js,ts,json,yml,yaml,md}' '!{lib,dist}/**/*'",
"toc": "md-magic --path '*.md'"
},
"author": {
"name": "SaarChaffee",
"email": "[email protected]",
"url": "https://github.com/SaarChaffee"
},
"contributors": [
{
"name": "Maiko Tan",
"email": "[email protected]",
"url": "https://github.com/MaikoTan"
}
],
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-hitokoto-sentences",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-hitokoto-sentences.git"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-hitokoto-sentences/issues"
},
"keywords": [
"bot",
"qqbot",
"chatbot",
"plugin",
"koishi",
"koishijs",
"hitokoto",
"chinese"
],
"koishi": {
"description": {
"en": "Sentences for Hitokoto plugin",
"zh": "随机一言语料库"
},
"locales": [
"zh"
],
"service": {
"implements": [
"sentences"
]
}
},
"prettier": "@hamster-bot/prettier-config",
"dependencies": {
"@koishijs/console": "^5.19.5"
},
"peerDependencies": {
"koishi": "^4.15.0"
},
"devDependencies": {
"@hamster-bot/eslint-config": "1.0.8",
"@hamster-bot/prettier-config": "^1.0.1",
"@hamster-bot/tsconfig": "^0.0.2",
"@koishijs/client": "^5.19.5",
"@koishijs/plugin-console": "^5.19.5",
"@types/chai": "^4.3.11",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.3.10",
"esbuild": "^0.19.8",
"esbuild-register": "^3.5.0",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.4.0",
"js-yaml": "^4.1.0",
"markdown-magic": "^2.6.1",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"yml-register": "^1.1.0"
}
}