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-fortune", | ||
| "version": "1.0.0", | ||
| "description": "Koishi 的算卦插件", | ||
| "main": "dist/index.js", | ||
| "typings": "dist/src/index.d.ts", | ||
| "scripts": { | ||
| "lint": "eslint --fix .", | ||
| "build": "webpack" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://code.mycard.moe/nanahira/koishi-plugin-fortune.git" | ||
| }, | ||
| "author": "Nanahira", | ||
| "license": "MIT", | ||
| "keywords": [ | ||
| "Koishi.js", | ||
| "qqbot", | ||
| "cqhttp", | ||
| "onebot" | ||
| ], | ||
| "bugs": { | ||
| "url": "https://code.mycard.moe/nanahira/koishi-plugin-fortune/issues" | ||
| }, | ||
| "homepage": "https://code.mycard.moe/nanahira/koishi-plugin-fortune", | ||
| "dependencies": { | ||
| "source-map-support": "^0.5.20" | ||
| }, | ||
| "peerDependencies": { | ||
| "koishi-core": "^3.14.2" | ||
| }, | ||
| "devDependencies": { | ||
| "@stdlib/random-base-mt19937": "^0.0.5", | ||
| "@types/node": "^16.10.2", | ||
| "@typescript-eslint/eslint-plugin": "^4.32.0", | ||
| "@typescript-eslint/parser": "^4.32.0", | ||
| "eslint": "^7.32.0", | ||
| "eslint-config-prettier": "^8.3.0", | ||
| "eslint-plugin-prettier": "^3.4.1", | ||
| "koishi-core": "^3.14.2", | ||
| "moment": "^2.29.1", | ||
| "prettier": "^2.4.1", | ||
| "raw-loader": "^4.0.2", | ||
| "ts-loader": "^9.2.6", | ||
| "typescript": "^4.4.3", | ||
| "webpack": "^5.56.0", | ||
| "webpack-cli": "^4.8.0" | ||
| } | ||
| } |
src/index.ts
0 → 100644
src/plugin.ts
0 → 100644
src/random.ts
0 → 100644
test/test-random.ts
0 → 100644
tsconfig.json
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment