-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.97 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "koishi-plugin-ffxiv-macrodict",
"version": "2.2.1",
"description": "A koishi plugin for searching macro descriptions which is used in the famous video game FFXIV (Final Fantasy XIV)",
"keywords": [
"ffxiv",
"final-fantasy-xiv",
"macro",
"koishi",
"koishijs",
"bot",
"qqbot"
],
"author": {
"name": "Maiko Tan",
"email": "[email protected]"
},
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-macrodict",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"lib",
"view",
"LICENCE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-ffxiv-macrodict.git"
},
"scripts": {
"build": "yarn build:tsup --minify",
"dev": "yarn build:tsup",
"build:tsup": "tsup",
"test": "mocha -r tsx -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}' '!lib/**/*'",
"doc": "md-magic --path 'README*.md'"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-macrodict/issues"
},
"koishi": {
"description": {
"en": "FFXIV (FINAL FANTASY XIV) Macro Dictionary / Text Command Searching",
"ja": "FFXIV (FINAL FANTASY XIV)マクロ辞典 / テキストコマンド検索",
"zh": "FFXIV (最终幻想14) 宏学词典/文本指令检索"
},
"service": {
"required": [
"database"
],
"optional": [
"puppeteer"
],
"implements": []
},
"locales": [
"en",
"zh",
"ja"
],
"recommendeds": []
},
"prettier": "@hamster-bot/prettier-config",
"devDependencies": {
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@hamster-bot/tsconfig": "^0.0.2",
"@koishijs/plugin-database-memory": "^3.0.0",
"@koishijs/plugin-mock": "^2.6.5",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.5",
"@types/pug": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "^4.3.4",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"koishi": "^4.17.2",
"koishi-plugin-puppeteer": "^3.3.1",
"markdown-magic": "^2.6.1",
"mocha": "^9.1.3",
"prettier": "^2.7.1",
"tsup": "^8.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"yml-register": "^1.1.0"
},
"peerDependencies": {
"koishi": "^4.15.7",
"koishi-plugin-puppeteer": "^3.3.1"
},
"dependencies": {
"ffxiv-textcommand-data": "^0.1.2"
}
}