-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.28 KB
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
{
"name": "napcat-plugin-censor",
"plugin": "群组消息审查",
"version": "1.0.0",
"type": "module",
"main": "dist/index.mjs",
"description": "审查群组消息,并自动撤回不适宜消息。",
"author": "XiaoYuan151",
"license": "MIT",
"keywords": [
"napcat",
"plugin",
"qq",
"censor"
],
"napcat": {
"tags": [
"工具"
],
"minVersion": "4.14.0",
"homepage": "https://github.com/XiaoYuan151/napcat-plugin-censor"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/express": "^5.0.6",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"vite": "^6.0.0"
},
"scripts": {
"build": "pnpm run build:webui && vite build",
"build:webui": "cd src/webui && pnpm install && pnpm run build",
"dev:webui": "cd src/webui && pnpm run dev",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"watch": "vite build --watch",
"typecheck": "pnpm run typecheck:plugin && pnpm run typecheck:webui",
"typecheck:plugin": "tsc --noEmit",
"typecheck:webui": "cd src/webui && pnpm install && tsc --noEmit"
}
}