-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.6 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.6 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
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
103
104
105
106
107
108
109
110
111
{
"name": "koishi-plugin-fonts",
"description": "Font Manager for Koishi",
"version": "1.0.1",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./lib/*": "./lib/*"
},
"typings": "lib/index.d.ts",
"type": "module",
"files": [
"lib",
"dist"
],
"author": {
"name": "SaarChaffee",
"email": "saarchaffee@qq.com",
"url": "https://github.com/SaarChaffee"
},
"maintainers": [
{
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com",
"url": "https://github.com/MaikoTan"
},
"Shigma <shigma10826@gmail.com>"
],
"scripts": {
"build": "yakumo build && koishi-console build",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"pub": "yakumo publish",
"lint": "eslint . --quiet",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koishijs/koishi-plugin-fonts.git"
},
"bugs": {
"url": "https://github.com/koishijs/koishi-plugin-fonts/issues"
},
"homepage": "https://fonts.koishi.chat",
"keywords": [
"bot",
"chatbot",
"koishi",
"plugin",
"font",
"storage",
"text"
],
"koishi": {
"description": {
"en": "Font Manager for Koishi",
"zh": "Koishi 的字体管理器"
},
"implements": [
"fonts"
],
"services": {
"required": [
"database"
],
"optional": [
"console"
]
}
},
"peerDependencies": {
"koishi": "^4.18.7"
},
"devDependencies": {
"@cordisjs/vitepress": "^4.1.3",
"@haixee/eslint-config": "^2.1.11",
"@koishijs/client": "^5.30.7",
"@koishijs/plugin-console": "^5.30.7",
"@types/node": "^20.17.30",
"@typescript-eslint/parser": "^8.29.1-alpha.2",
"esbuild": "^0.25.2",
"esbuild-register": "^3.6.0",
"eslint": "^9.23.0",
"eslint-plugin-vue": "^9.33.0",
"koishi": "^4.18.7",
"typescript": "^5.9.0-dev.20250403",
"vitepress": "^1.6.3",
"yakumo": "^1.0.0",
"yakumo-esbuild": "^1.0.0",
"yakumo-esbuild-yaml": "^0.3.1",
"yakumo-publish": "^0.3.10",
"yakumo-publish-sync": "^1.0.0-alpha.1",
"yakumo-tsc": "^1.0.0",
"yakumo-upgrade": "^0.3.6",
"yakumo-version": "^0.3.4",
"yml-register": "^1.2.5"
},
"dependencies": {
"@koishijs/console": "^5.30.7",
"sanitize-filename": "^1.6.3"
}
}