-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.4 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-ffxiv-lodestone",
"version": "0.0.3",
"description": "A koishi plugin that provides lodestone related feature for FFXIV players",
"keywords": [
"ffxiv",
"final-fantasy-xiv",
"lodestone",
"koishi",
"koishijs",
"bot",
"qqbot"
],
"author": {
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
},
"homepage": "https://github.com/AwesomeHamster/koishi-plugin-ffxiv-lodestone",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"src": "src",
"test": "__tests__"
},
"files": [
"lib",
"LICENCE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AwesomeHamster/koishi-plugin-ffxiv-lodestone.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-lodestone/issues"
},
"koishi": {
"description": {
"en": "FFXIV (FINAL FANTASY XIV) Lodestone Integration",
"zh": "FFXIV (最终幻想14) Lodestone 集成"
},
"service": {
"required": [],
"optional": [],
"implements": []
},
"locales": [
"en",
"zh"
],
"recommendeds": []
},
"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.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"chai": "^4.3.4",
"esbuild-plugin-yaml": "^0.0.1",
"eslint": "^8.19.0",
"eslint-import-resolver-typescript": "^3.4.1",
"koishi": "^4.7.0",
"koishi-plugin-puppeteer": "^3.3.1",
"mocha": "^9.1.3",
"prettier": "^2.7.1",
"tsup": "^8.0.1",
"tsx": "^4.7.1",
"typescript": "^4.7.3",
"yml-register": "^1.1.0"
},
"peerDependencies": {
"koishi": "^4.7.0",
"koishi-plugin-puppeteer": "^3.3.1"
},
"dependencies": {
"lodestone-news": "^0.1.2"
}
}