-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "koishi-plugin-switch",
"version": "1.9.0",
"description": "Switch Command Contexts in Koishi",
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"contributors": [
"Hieuzest <[email protected]>",
"Shigma <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/koishijs/koishi-plugin-switch",
"repository": {
"type": "git",
"url": "https://github.com/koishijs/koishi-plugin-switch.git"
},
"bugs": {
"url": "https://github.com/koishijs/koishi-plugin-switch/issues"
},
"keywords": [
"bot",
"chatbot",
"koishi",
"plugin",
"switch"
],
"koishi": {
"description": {
"en": "Switch command contexts",
"zh": "修改指令生效的上下文"
},
"service": {
"required": [
"database"
]
},
"locales": [
"zh"
]
},
"scripts": {
"build": "yakumo build",
"test": "mocha --exit -r esbuild-register -r yml-register tests/*.spec.ts",
"test:text": "shx rm -rf coverage && c8 -r text yarn test",
"test:json": "shx rm -rf coverage && c8 -r json yarn test",
"test:html": "shx rm -rf coverage && c8 -r html yarn test"
},
"devDependencies": {
"@koishijs/plugin-admin": "^2.0.0-beta.4",
"@koishijs/plugin-database-memory": "^3.4.0",
"@koishijs/plugin-help": "^2.4.4",
"@koishijs/plugin-mock": "^2.6.6",
"@types/chai": "^4.3.16",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.5",
"c8": "^9.1.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.2",
"chai-shape": "^1.0.0",
"esbuild": "^0.20.2",
"esbuild-register": "^3.5.0",
"jest-mock": "^29.7.0",
"koishi": "^4.17.8",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"typescript": "^5.6.0-dev.20240619",
"yakumo": "^1.0.0-beta.16",
"yakumo-esbuild": "^1.0.0-beta.6",
"yakumo-tsc": "^1.0.0-beta.4",
"yml-register": "^1.2.5"
},
"peerDependencies": {
"koishi": "^4.17.8"
}
}