bump and dev server
Showing
dev/extras.ts
0 → 100644
dev/index.ts
0 → 100644
This diff is collapsed.
| ... | @@ -6,7 +6,9 @@ | ... | @@ -6,7 +6,9 @@ |
| "types": "dist/index.d.ts", | "types": "dist/index.d.ts", | ||
| "scripts": { | "scripts": { | ||
| "lint": "eslint --fix .", | "lint": "eslint --fix .", | ||
| "build": "webpack && env PACK_ALL=1 webpack" | "build": "webpack && env PACK_ALL=1 webpack", | ||
| "start": "ts-node ./dev", | |||
| "test": "jest --passWithNoTests" | |||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| ... | @@ -26,26 +28,51 @@ | ... | @@ -26,26 +28,51 @@ |
| }, | }, | ||
| "homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-picsource-yande", | "homepage": "https://code.mycard.moe/3rdeye/koishi-plugin-picsource-yande", | ||
| "peerDependencies": { | "peerDependencies": { | ||
| "koishi": "^4.2.1", | "koishi": "^4.2.2", | ||
| "koishi-plugin-pics": "^8.3.0" | "koishi-plugin-pics": "^8.3.0" | ||
| }, | }, | ||
| "dependencies": { | "dependencies": { | ||
| "koishi-thirdeye": "^8.3.2", | "koishi-thirdeye": "^8.3.3", | ||
| "source-map-support": "^0.5.21" | "source-map-support": "^0.5.21" | ||
| }, | }, | ||
| "devDependencies": { | "devDependencies": { | ||
| "@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.17", | "@types/node": "^17.0.17", | ||
| "@typescript-eslint/eslint-plugin": "^4.33.0", | "@typescript-eslint/eslint-plugin": "^4.33.0", | ||
| "@typescript-eslint/parser": "^4.33.0", | "@typescript-eslint/parser": "^4.33.0", | ||
| "eslint": "^7.32.0", | "eslint": "^7.32.0", | ||
| "eslint-config-prettier": "^8.3.0", | "eslint-config-prettier": "^8.3.0", | ||
| "eslint-plugin-prettier": "^3.4.1", | "eslint-plugin-prettier": "^3.4.1", | ||
| "jest": "^27.5.1", | |||
| "prettier": "^2.5.1", | "prettier": "^2.5.1", | ||
| "raw-loader": "^4.0.2", | "raw-loader": "^4.0.2", | ||
| "ts-jest": "^27.1.3", | |||
| "ts-loader": "^9.2.6", | "ts-loader": "^9.2.6", | ||
| "ts-node": "^10.5.0", | |||
| "typescript": "^4.5.5", | "typescript": "^4.5.5", | ||
| "webpack": "^5.68.0", | "webpack": "^5.68.0", | ||
| "webpack-cli": "^4.9.2", | "webpack-cli": "^4.9.2", | ||
| "ws": "^8.5.0" | "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" | |||
| } | } | ||
| } | } |
tests/sample.spec.ts
0 → 100644
Please register or sign in to comment