-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2 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
{
"name": "@q78kg/koishi-plugin-text-censor",
"description": "A text censor provider for Koishi",
"version": "1.1.0-beta.2",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"license": "MIT",
"scripts": {
"build": "yakumo build --minify",
"publish": "yakumo publish",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hoshino-Yumetsuki/koishi-plugin-text-censor.git"
},
"bugs": {
"url": "https://github.com/Hoshino-Yumetsuki/koishi-plugin-text-censor/issues"
},
"homepage": "https://github.com/Hoshino-Yumetsuki/koishi-plugin-text-censor",
"keywords": [
"bot",
"chatbot",
"koishi",
"plugin",
"censor",
"filter",
"security",
"text"
],
"koishi": {
"service": {
"implements": [
"censor"
]
},
"description": {
"zh": "文本敏感词过滤服务,支持多敏感词库"
}
},
"peerDependencies": {
"koishi": "^4.17.9"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"koishi": "^4.17.9",
"prettier": "^3.3.3",
"rolldown": "1.0.0-beta.3",
"typescript": "^5.5.3",
"yakumo": "^1.0.0-beta.21",
"yakumo-rolldown": "^1.1.0-beta.3",
"yakumo-tsc": "^1.0.0-beta.7",
"yml-register": "^1.2.5"
},
"dependencies": {
"@koishijs/censor": "^1.0.1",
"@q78kg/mint-filter": "^1.0.1"
}
}