generated from AwesomeHamster/koishi-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.41 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "koishi-plugin-bang",
"version": "1.0.0",
"description": "bang (!) command implementation in Koishi",
"keywords": [
"bot",
"qqbot",
"chatbot",
"plugin",
"koishi",
"koishijs",
"linux-command",
"bang"
],
"author": {
"name": "Maiko Tan",
"email": "[email protected]"
},
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-bang",
"license": "MIT",
"main": "dist/index.bundle.js",
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-bang.git"
},
"scripts": {
"build": "constructeur build && tsc --emitDeclarationOnly",
"dev": "constructeur build --minify false && tsc --emitDeclarationOnly",
"clean": "rimraf dist/*",
"test": "mocha -r ts-node/register -r yml-register --extension .spec.ts ./__tests__",
"lint": "eslint src/**/*.ts && yarn prettier --check",
"format": "yarn prettier --write",
"prettier": "prettier '**/*.{js,ts,json,yml,yaml,md}' '!dist/**/*'"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-bang/issues"
},
"koishi": {
"description": {
"en": "bang (!) command implementation",
"zh": "bang (!) 指令实现"
},
"service": {
"required": ["database"],
"optional": [],
"implements": []
},
"locales": [
"en",
"zh"
],
"recommendeds": []
},
"prettier": "@hamster-bot/prettier-config",
"peerDependencies": {
"koishi": "^4.10.1"
},
"devDependencies": {
"@hamster-bot/constructeur": "*",
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@koishijs/plugin-database-memory": "^1.4.2",
"@koishijs/plugin-mock": "^2.0.2",
"@types/chai": "^4.3.3",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.9",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.6",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.4.1",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.7.3",
"yml-register": "^1.1.0"
}
}