-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "napcat-plugin-template",
"plugin": "插件模板",
"version": "1.0.0",
"type": "module",
"main": "index.mjs",
"description": "NapCat 插件开发模板 - 快速开始你的插件开发",
"author": "Your Name",
"license": "MIT",
"keywords": [
"napcat",
"plugin",
"qq",
"template"
],
"napcat": {
"tags": [
"工具"
],
"minVersion": "4.14.0",
"homepage": ""
},
"dependencies": {
"napcat-types": "0.0.16"
},
"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",
"watch": "vite build --watch",
"typecheck": "tsc --noEmit"
}
}