-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1010 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1010 Bytes
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
{
"name": "mioku",
"version": "0.5.9",
"author": "Jerryplusy",
"license": "MIT",
"description": "AI-powered bot application based on mioki",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"workspaces": [
"plugins/*",
"src/services/*"
],
"dependencies": {
"mioki": "^0.16.1",
"puppeteer": "^24.37.5"
},
"devDependencies": {
"@types/lodash": "^4.14.0",
"@types/node": "^20.0.0",
"prettier": "^3.8.1",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitepress": "^1.0.0"
},
"scripts": {
"start": "tsx app.ts",
"dev": "tsx watch app.ts",
"build": "tsc",
"mioku-install": "tsx install-mioku.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"mioki": {
"prefix": "/",
"owners": [],
"admins": [],
"plugins": [],
"log_level": "info",
"online_push": false,
"error_push": true,
"napcat": []
}
}