first
Showing
.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 source diff could not be displayed because it is too large. You can view the blob instead.
package.json
0 → 100644
| { | ||
| "name": "koishi-utils-schemagen", | ||
| "version": "1.0.0", | ||
| "description": "在 Koishi.js 中,使用类装饰器定义 Schema", | ||
| "main": "dist/index.js", | ||
| "typings": "dist/index.d.ts", | ||
| "scripts": { | ||
| "lint": "eslint --fix .", | ||
| "build": "tsc" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://code.mycard.moe/nanahira/koishi-utils-schema.git" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://code.mycard.moe/nanahira/koishi-utils-schema/issues" | ||
| }, | ||
| "homepage": "https://code.mycard.moe/nanahira/koishi-utils-schema", | ||
| "keywords": [ | ||
| "Koishi.js", | ||
| "Nest.js", | ||
| "nest", | ||
| "koishi", | ||
| "qqbot", | ||
| "cqhttp", | ||
| "cqbot", | ||
| "koishijs", | ||
| "utils-schema" | ||
| ], | ||
| "author": "Nanahira", | ||
| "license": "MIT", | ||
| "peerDependencies": { | ||
| "koishi": "^4.0.0-alpha.9", | ||
| "reflect-metadata": "^0.1.13" | ||
| }, | ||
| "devDependencies": { | ||
| "@types/lodash": "^4.14.175", | ||
| "@types/node": "^16.10.3", | ||
| "@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", | ||
| "koishi": "^4.0.0-alpha.9", | ||
| "prettier": "^2.4.1", | ||
| "proxy-agent": "^5.0.0", | ||
| "reflect-metadata": "^0.1.13", | ||
| "typescript": "^4.4.3" | ||
| }, | ||
| "dependencies": { | ||
| "class-transformer": "^0.4.0", | ||
| "lodash": "^4.17.21" | ||
| } | ||
| } |
src/constants.ts
0 → 100644
src/decorators.ts
0 → 100644
src/def.ts
0 → 100644
src/index.ts
0 → 100644
src/methods.ts
0 → 100644
test/test-transform.ts
0 → 100644
test/test.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment