first
Showing
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.gitmodules
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
LICENSE
0 → 100644
index.ts
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": "schemastery-gen", | |||
| "description": "Decorator style of [Schemastery](https://github.com/Shigma/schemastery)", | |||
| "version": "1.0.0", | |||
| "main": "dist/index.js", | |||
| "types": "dist/index.d.ts", | |||
| "scripts": { | |||
| "lint": "eslint --fix .", | |||
| "build": "tsc", | |||
| "start": "node dist/index.js" | |||
| }, | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "https://code.mycard.moe/3rdeye/schemastery-gen.git" | |||
| }, | |||
| "author": "Nanahira <nanahira@momobako.com>", | |||
| "license": "MIT", | |||
| "keywords": [], | |||
| "bugs": { | |||
| "url": "https://code.mycard.moe/3rdeye/schemastery-gen/issues" | |||
| }, | |||
| "homepage": "https://code.mycard.moe/3rdeye/schemastery-gen", | |||
| "devDependencies": { | |||
| "@types/lodash": "^4.14.176", | |||
| "@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", | |||
| "schemastery": "^1.0.0", | |||
| "typescript": "^4.4.4" | |||
| }, | |||
| "dependencies": { | |||
| "lodash": "^4.17.21", | |||
| "reflect-metadata": "^0.1.13", | |||
| "typed-reflector": "^1.0.5" | |||
| } | |||
| } |
src/decorators/index.ts
0 → 100644
src/decorators/register.ts
0 → 100644
src/def/index.ts
0 → 100644
src/def/interfaces.ts
0 → 100644
src/metadata/constants.ts
0 → 100644
src/metadata/metadata.ts
0 → 100644
src/metadata/reflector.ts
0 → 100644
src/utility/transformer.ts
0 → 100644
src/utility/utility.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment