-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.58 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
{
"name": "koishi-plugin-adapter-villa",
"version": "0.7.0",
"description": "villa adapter for Koishi",
"keywords": [
"adapter",
"chatbot",
"koishi",
"mihoyo",
"plugin",
"villa"
],
"homepage": "https://github.com/DreamOfIce/koishi-plugin-adapter-villa#readme",
"bugs": {
"url": "https://github.com/DreamOfIce/koishi-plugin-adapter-villa/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DreamOfIce/koishi-plugin-adapter-villa.git"
},
"license": "MIT",
"author": {
"name": "冰雪殇璃陌梦",
"email": "[email protected]",
"url": "https://www.dreamofice.cn"
},
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "tsup",
"postinstall": "husky install",
"lint": "yarn lint:eslint; yarn lint:prettier",
"lint:eslint": "eslint --ext .ts --fix ./src",
"lint:prettier": "prettier --write .",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"release": "dotenv release-it",
"test": "echo \"Error: no test specified\" && exit 1"
},
"resolutions": {
"ts-node": "npm:@dreamofice/ts-node@^10.9.2"
},
"dependencies": {
"file-type": "^16.5.4",
"js-md5": "^0.8.3"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@koishijs/eslint-config": "^1.0.4",
"@release-it/conventional-changelog": "^8.0.1",
"@satorijs/protocol": "^1.1.2",
"@satorijs/router": "^1.1.2",
"@satorijs/satori": "^3.3.1",
"@tsconfig/node-lts": "^20.1.0",
"@tsconfig/strictest": "^2.0.2",
"@types/koa": "^2.13.12",
"@types/koa__router": "^12.0.4",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"koishi": "^4.16.1",
"nano-staged": "^0.8.0",
"pinst": "^3.0.0",
"prettier": "^3.1.1",
"prettier-plugin-packagejson": "^2.4.7",
"release-it": "^17.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@satorijs/satori": "^3.3.1",
"koishi": "^4.16.1"
},
"koishi": {
"description": {
"en": "villa adapter for Koishi",
"zh": "Koishi 的大别野适配器"
},
"locales": [
"en",
"zh"
],
"preview": true,
"service": {
"implements": [
"adapter"
]
}
}
}