-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.38 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.38 KB
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
{
"name": "koishi-plugin-ffxiv-eorzea",
"version": "0.0.6",
"description": "Toolbox for FFXIV (FINAL FANTASY XIV) Players",
"keywords": [
"bot",
"qqbot",
"chatbot",
"plugin",
"koishi",
"koishijs",
"ffxiv",
"eorzea"
],
"author": {
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
},
"maintainers": [
{
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
},
{
"name": "ErinnerMO",
"email": "erinnermo@gmail.com"
}
],
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-eorzea",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-ffxiv-eorzea.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/**/*'"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-eorzea/issues"
},
"koishi": {
"description": {
"en": "Toolbox for FFXIV (FINAL FANTASY XIV) Players",
"zh": "FF14 实用工具集"
},
"service": {
"required": [],
"optional": [],
"implements": []
},
"locales": [
"en",
"zh",
"ja"
],
"recommendeds": []
},
"peerDependencies": {
"koishi": "^4.8.2"
},
"prettier": "@hamster-bot/prettier-config",
"devDependencies": {
"@hamster-bot/eslint-config": "*",
"@hamster-bot/prettier-config": "*",
"@hamster-bot/tsconfig": "^0.0.2",
"@koishijs/plugin-mock": "^2.0.2",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.4.1",
"koishi": "^4.8.2",
"mocha": "^9.2.0",
"prettier": "^2.7.1",
"tsup": "^8.0.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"yml-register": "^1.1.0"
}
}