-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.21 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
{
"name": "koishi-plugin-ffxiv-fflogs",
"version": "0.0.1",
"description": "FFLogs toolbox",
"keywords": [
"bot",
"chatbot",
"plugin",
"koishi",
"koishijs",
"ffxiv",
"fflogs"
],
"author": {
"name": "Maiko Tan",
"email": "[email protected]"
},
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-fflogs",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"src": "src",
"test": "tests"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-ffxiv-fflogs.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc",
"test": "mocha -r esbuild-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-ffxiv-fflogs/issues"
},
"koishi": {
"description": {
"en": "FFLogs Toolbox",
"zh": "FFLogs 工具箱",
"zh-tw": "FFLogs 工具箱",
"ja": "FFLogs ツールボックス",
"fr": "Boîte à outils FFLogs",
"de": "FFLogs Toolbox",
"ko": "FFLogs 도구 상자"
},
"locales": [
"en"
]
},
"peerDependencies": {
"koishi": "^4.11.0"
},
"packageManager": "[email protected]",
"prettier": "@hamster-bot/prettier-config",
"devDependencies": {
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@hamster-bot/tsconfig": "^0.0.2",
"@koishijs/cache": "^2.1.0",
"@koishijs/plugin-mock": "^2.6.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"esbuild": "^0.19.10",
"esbuild-register": "^3.5.0",
"eslint": "^8.54.0",
"eslint-import-resolver-typescript": "^3.6.1",
"js-yaml": "^4.1.0",
"koishi-plugin-cache-memory": "^2.1.0",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"yml-register": "^1.1.0"
}
}