first
Showing
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
LICENSE
0 → 100644
install-npm.sh
0 → 100755
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | ||
| "name": "koishi-plugin-thesaurus", | ||
| "version": "1.0.0", | ||
| "description": "Koishi.js chat plugin for https://github.com/Kyomotoi/AnimeThesaurus", | ||
| "main": "dist/index.js", | ||
| "types": "dist/index.d.ts", | ||
| "scripts": { | ||
| "lint": "eslint --fix .", | ||
| "build": "webpack" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://code.mycard.moe/3rdeye/koishi-plugin-thesaurus.git" | ||
| }, | ||
| "author": "Nanahira <nanahira@momobako.com>", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "Koishi.js", | ||
| "qqbot", | ||
| "cqhttp", | ||
| "onebot", | ||
| "ygo", | ||
| "yugioh", | ||
| "ygopro" | ||
| ], | ||
| "bugs": { | ||
| "url": "https://code.mycard.moe/3rdeye/koishi-plugin-thesaurus/issues" | ||
| }, | ||
| "homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-thesaurus", | ||
| "dependencies": { | ||
| "source-map-support": "^0.5.20" | ||
| }, | ||
| "peerDependencies": { | ||
| "koishi": "^4.0.0-alpha.9" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/lodash": "^4.14.175", | ||
| "@types/lru-cache": "^5.1.1", | ||
| "@types/node": "^16.11.1", | ||
| "@typescript-eslint/eslint-plugin": "^4.33.0", | ||
| "@typescript-eslint/parser": "^4.33.0", | ||
| "eslint": "^7.32.0", | ||
| "eslint-config-prettier": "^8.3.0", | ||
| "eslint-plugin-prettier": "^3.4.1", | ||
| "koishi": "^4.0.0-alpha.9", | ||
| "koishi-utils-schemagen": "^1.1.3", | ||
| "lodash": "^4.17.21", | ||
| "lru-cache": "^6.0.0", | ||
| "prettier": "^2.4.1", | ||
| "proxy-agent": "^5.0.0", | ||
| "raw-loader": "^4.0.2", | ||
| "ts-loader": "^9.2.6", | ||
| "typescript": "^4.4.4", | ||
| "webpack": "^5.58.2", | ||
| "webpack-cli": "^4.9.1" | ||
| } | ||
| } |
src/config.ts
0 → 100644
src/index.ts
0 → 100644
src/plugin.ts
0 → 100644
tsconfig.json
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment