-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "koishi-plugin-maimai",
"author": {
"name": "DrLee_lihr",
"email": "812403lihr@sina.com",
"url": "https://github.com/DrLee-lihr"
},
"description": "a koishi plugin for maimai(DX) players",
"private": false,
"version": "1.3.0",
"repository": {
"type": "git",
"url": "https://github.com/DrLee-lihr/koishi-plugin-maimai.git"
},
"bugs": "https://github.com/DrLee-lihr/koishi-plugin-maimai/issues",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"/lib",
"/dist",
"/resources"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b",
"lint": "eslint .\\src\\** --fix"
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"maimai"
],
"peerDependencies": {
"koishi": "^4.7.6"
},
"dependencies": {
"sharp": "^0.30.7",
"text-to-svg": "^3.1.5"
},
"devDependencies": {
"@types/sharp": "^0.30.4",
"@types/text-to-svg": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-typescript": "^0.14.0"
}
}