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
dev/extras.ts
0 → 100644
dev/index.ts
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | |||
| "name": "koishi-plugin-retweet-notifier", | |||
| "description": "提醒群友转推的插件。", | |||
| "version": "1.0.0", | |||
| "main": "dist/index.js", | |||
| "types": "dist/src/index.d.ts", | |||
| "scripts": { | |||
| "lint": "eslint --fix .", | |||
| "build": "webpack && env PACK_ALL=1 webpack", | |||
| "start": "ts-node ./dev", | |||
| "test": "jest --passWithNoTests" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://code.mycard.moe/3rdeye/koishi-plugin-retweet-notifier.git" | |||
| }, | |||
| "author": "Nanahira <nanahira@momobako.com>", | |||
| "license": "MIT", | |||
| "keywords": [ | |||
| "Koishi.js", | |||
| "qqbot", | |||
| "cqhttp", | |||
| "onebot" | |||
| ], | |||
| "bugs": { | |||
| "url": "https://code.mycard.moe/3rdeye/koishi-plugin-retweet-notifier/issues" | |||
| }, | |||
| "homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-retweet-notifier", | |||
| "jest": { | |||
| "moduleFileExtensions": [ | |||
| "js", | |||
| "json", | |||
| "ts" | |||
| ], | |||
| "rootDir": "tests", | |||
| "testRegex": ".*\\.spec\\.ts$", | |||
| "transform": { | |||
| "^.+\\.(t|j)s$": "ts-jest" | |||
| }, | |||
| "collectCoverageFrom": [ | |||
| "**/*.(t|j)s" | |||
| ], | |||
| "coverageDirectory": "../coverage", | |||
| "testEnvironment": "node" | |||
| }, | |||
| "dependencies": { | |||
| "koishi-schedule-send": "^2.1.2", | |||
| "koishi-thirdeye": "^11.1.11", | |||
| "lodash": "^4.17.21", | |||
| "moment": "^2.29.4" | |||
| }, | |||
| "peerDependencies": { | |||
| "koishi": "^4.10.1" | |||
| }, | |||
| "devDependencies": { | |||
| "@koishijs/plugin-console": "^4.6.11", | |||
| "@koishijs/plugin-database-memory": "^1.6.0", | |||
| "@koishijs/plugin-dataview": "^2.1.7", | |||
| "@koishijs/plugin-help": "^1.2.5", | |||
| "@koishijs/plugin-sandbox": "^2.3.5", | |||
| "@types/jest": "^29.2.3", | |||
| "@types/lodash": "^4.14.189", | |||
| "@types/node": "^18.11.9", | |||
| "@typescript-eslint/eslint-plugin": "^5.43.0", | |||
| "@typescript-eslint/parser": "^5.43.0", | |||
| "eslint": "8.22.0", | |||
| "eslint-config-prettier": "^8.5.0", | |||
| "eslint-plugin-prettier": "^4.2.1", | |||
| "jest": "^29.3.1", | |||
| "prettier": "^2.7.1", | |||
| "raw-loader": "^4.0.2", | |||
| "ts-jest": "^29.0.3", | |||
| "ts-loader": "^9.4.1", | |||
| "ts-node": "^10.9.1", | |||
| "typescript": "^4.9.3", | |||
| "webpack": "^5.75.0", | |||
| "webpack-cli": "^4.10.0", | |||
| "ws": "^8.11.0" | |||
| }, | |||
| "koishi": { | |||
| "service": { | |||
| "required": [ | |||
| "database" | |||
| ] | |||
| } | |||
| } | |||
| } |
src/config.ts
0 → 100644
src/index.ts
0 → 100644
tests/sample.spec.ts
0 → 100644
tsconfig.json
0 → 100644
webpack.config.js
0 → 100644
Please register or sign in to comment