unfinished
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
install-npm.sh
0 → 100755
This diff is collapsed.
... | ... | @@ -18,14 +18,15 @@ |
"Koishi.js", | ||
"qqbot", | ||
"cqhttp", | ||
"onebot" | ||
"onebot", | ||
"impl:adapter" | ||
], | ||
"bugs": { | ||
"url": "https://code.mycard.moe/3rdeye/koishi-plugin-adapter-wechaty/issues" | ||
}, | ||
"homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-adapter-wechaty", | ||
"peerDependencies": { | ||
"koishi": "^4.1.1" | ||
"koishi": "^4.2.2" | ||
}, | ||
"dependencies": { | ||
"moment": "^2.29.1", | ||
... | ... | @@ -36,19 +37,44 @@ |
"wechaty-puppet": "^1.10.2" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^17.0.13", | ||
"@koishijs/plugin-cache-lru": "^1.0.0-rc.0", | ||
"@koishijs/plugin-console": "^3.1.1", | ||
"@koishijs/plugin-database-memory": "^1.0.2", | ||
"@koishijs/plugin-sandbox": "^1.0.0", | ||
"@types/jest": "^27.4.0", | ||
"@types/node": "^17.0.18", | ||
"@typescript-eslint/eslint-plugin": "^4.33.0", | ||
"@typescript-eslint/parser": "^4.33.0", | ||
"eslint": "^7.32.0", | ||
"eslint-config-prettier": "^8.3.0", | ||
"eslint-config-prettier": "^8.4.0", | ||
"eslint-plugin-prettier": "^3.4.1", | ||
"koishi": "^4.1.1", | ||
"jest": "^27.5.1", | ||
"koishi": "4.2.2", | ||
"prettier": "^2.5.1", | ||
"raw-loader": "^4.0.2", | ||
"ts-jest": "^27.1.3", | ||
"ts-loader": "^9.2.6", | ||
"ts-node": "^10.5.0", | ||
"typescript": "^4.5.5", | ||
"webpack": "^5.67.0", | ||
"webpack": "^5.69.1", | ||
"webpack-cli": "^4.9.2", | ||
"ws": "^8.4.2" | ||
"ws": "^8.5.0" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"ts" | ||
], | ||
"rootDir": "tests", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node" | ||
} | ||
} |
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