first
Showing
.dockerignore
0 → 100644
.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-tabulate", | ||
| "description": "YGOCore 战队联盟排表姬的 Koishi 插件", | ||
| "version": "1.0.0", | ||
| "main": "dist/index.js", | ||
| "types": "dist/index.d.ts", | ||
| "scripts": { | ||
| "lint": "eslint --fix .", | ||
| "build": "webpack && env PACK_AWS=1 webpack" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://code.mycard.moe/3rdeye/koishi-plugin-tabulate.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-tabulate/issues" | ||
| }, | ||
| "homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-tabulate", | ||
| "dependencies": { | ||
| "class-transformer": "^0.4.0", | ||
| "koishi-thirdeye": "^1.0.3", | ||
| "lodash": "^4.17.21", | ||
| "moment": "^2.29.1", | ||
| "source-map-support": "^0.5.20" | ||
| }, | ||
| "peerDependencies": { | ||
| "koishi": "^4.0.0-beta.0" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/lodash": "^4.14.176", | ||
| "@types/node": "^16.11.7", | ||
| "@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-beta.0", | ||
| "prettier": "^2.4.1", | ||
| "raw-loader": "^4.0.2", | ||
| "ts-loader": "^9.2.6", | ||
| "typescript": "^4.4.4", | ||
| "webpack": "^5.64.0", | ||
| "webpack-cli": "^4.9.1", | ||
| "ws": "^8.2.3" | ||
| } | ||
| } |
src/config.ts
0 → 100644
src/def/Match.ts
0 → 100644
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment