-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "koishi-plugin-theme-doki",
"description": "Doki Theme for Koishi Console",
"version": "0.2.4",
"main": "lib/index.cjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"format": "prettier --config ../../.prettierrc.yml --ignore-path .prettierignore -cw .",
"generate": "ts-node ./scripts/generate-theme.ts && yarn format"
},
"files": [
"lib",
"dist"
],
"author": "student_2333 <lgc2333@126.com>",
"license": "MIT",
"keywords": [
"chatbot",
"koishi",
"plugin",
"doki",
"theme"
],
"homepage": "https://github.com/lgc-KoiDev/koishi-plugin-theme-doki",
"koishi": {
"description": {
"zh": "在 Koishi 控制台里使用可爱的二次元角色主题吧!"
},
"services": {
"required": [
"console"
]
},
"public": [
"dist"
],
"browser": true
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.30.2",
"koishi": "^4.18.4"
},
"devDependencies": {
"@koishijs/client": "^5.30.2",
"@koishijs/plugin-console": "^5.30.2",
"@vueuse/core": "^12.2.0",
"cosmokit": "^1.6.3",
"koishi-plugin-wallpaper": "^1.0.5",
"octokit": "^4.0.2",
"prettier": "^3.4.2",
"semaphore-promise": "^1.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vue": "^3.5.13"
}
}