-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 2.75 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",
"version": "2.1.7",
"description": "A simple plugin for koishi the bot framework to get a random Hitokoto sentence, which is from [一言网](https://hitokoto.cn).",
"keywords": [
"bot",
"qqbot",
"chatbot",
"plugin",
"koishi",
"koishijs",
"hitokoto",
"chinese"
],
"author": {
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
},
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-hitokoto",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-hitokoto.git"
},
"scripts": {
"build": "yarn build:tsup --minify",
"dev": "yarn build:tsup",
"build:tsup": "tsup",
"test": "mocha -r tsx -r yml-register --extension .spec.ts ./__tests__",
"lint": "eslint './**/*.{js,ts,tsx}' && yarn prettier --check",
"format": "yarn prettier --write",
"prettier": "prettier '**/*.{js,ts,json,yml,yaml,md}' '!dist/**/*'"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-hitokoto/issues"
},
"koishi": {
"description": {
"en": "Hitokoto on Koishi (powered by http://hitokoto.cn/)",
"zh": "随机一言 (数据来源: http://hitokoto.cn)"
},
"service": {
"required": [],
"optional": [
"database"
],
"implements": []
},
"locales": [
"en",
"zh"
],
"recommendeds": []
},
"prettier": "@hamster-bot/prettier-config",
"peerDependencies": {
"koishi": "^4.16.0"
},
"devDependencies": {
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@hamster-bot/tsconfig": "^0.0.2",
"@koishijs/plugin-database-memory": "^3.0.0",
"@koishijs/plugin-mock": "^2.6.5",
"@types/chai": "^4.3.12",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^5.1.0",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"koishi": "^4.17.0",
"koishi-plugin-hitokoto-sentences": "^1.0.394-alpha.1",
"mocha": "^10.3.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"yml-register": "^1.2.5"
}
}