-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "@hamster-bot/koishi-plugin-tarot",
"version": "0.0.6",
"description": "A tarot plugin for Koishi",
"author": {
"name": "Maiko Tan",
"email": "maiko.tan.coding@gmail.com"
},
"repository": {
"type": "git+https",
"url": "https://github.com/AwesomeHamster/koishi-plugin-tarot.git"
},
"bugs": {
"url": "https://github.com/AwesomeHamster/koishi-plugin-tarot/issues"
},
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "tsup src/index.ts --minify --dts --format cjs --out-dir lib --external koishi"
},
"devDependencies": {
"koishi": "^4.15.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"koishi": {
"description": {
"zh-CN": "抽取塔罗牌并显示简易牌意",
"en-US": "Draw a tarot card and show a brief meaning (Chinese only)"
},
"locales": [
"zh-CN"
],
"preview": true
}
}