create-yesimbot-extension
Version:
Scaffold tool for creating YesImBot extensions
44 lines (43 loc) • 861 B
JSON
{
"name": "{{fullPackageName}}",
"description": "{{description}}",
"version": "0.0.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"README.md"
],
"scripts": {
"build": "tsc && node esbuild.config.mjs",
"dev": "tsc -w --preserveWatchOutput",
"clean": "rm -rf lib .turbo tsconfig.tsbuildinfo *.tgz",
"pack": "bun pm pack"
},
"license": "MIT",
"keywords": [],
"repository": {
"type": "git",
"url": "",
"directory": ""
},
"devDependencies": {
"koishi": "^4.18.7",
"koishi-plugin-yesimbot": "*"
},
"peerDependencies": {
"koishi": "^4.18.7",
"koishi-plugin-yesimbot": "*"
},
"koishi": {
"description": {
"zh": "{{description}}",
"en": "{{description}}"
},
"service": {
"required": [
"yesimbot"
]
}
}
}