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
Dockerfile
0 → 100644
LICENSE
0 → 100644
docker/entrypoint.sh
0 → 100755
install-npm.sh
0 → 100755
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | ||
| "name": "koishi-bootstrap", | ||
| "description": "Koishi bootstraper, for Docker.", | ||
| "version": "1.0.0", | ||
| "scripts": { | ||
| "lint": "eslint --fix .", | ||
| "build": "tsc", | ||
| "plugin": "node dist/install-plugin.js", | ||
| "start": "koishi start" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://code.mycard.moe/3rdeye/koishi-bootstrap.git" | ||
| }, | ||
| "author": "Nanahira <nanahira@momobako.com>", | ||
| "license": "MIT", | ||
| "keywords": [], | ||
| "bugs": { | ||
| "url": "https://code.mycard.moe/3rdeye/koishi-bootstrap/issues" | ||
| }, | ||
| "homepage": "https://code.mycard.moe/3rdeye/koishi-bootstrap", | ||
| "devDependencies": { | ||
| "@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", | ||
| "prettier": "^2.4.1", | ||
| "typescript": "^4.5.2" | ||
| }, | ||
| "dependencies": { | ||
| "@koishijs/cli": "^4.0.0-beta.1", | ||
| "koishi": "^4.0.0-beta.1", | ||
| "load-json-file": "^6.2.0", | ||
| "ws": "^8.2.3", | ||
| "yaml": "^1.10.2" | ||
| } | ||
| } |
src/def/interfaces.ts
0 → 100644
src/install-plugin.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment