UNPKG

typeorm-translatable

Version:

Translation classes, utils and decorators for i18n in TypeORM

82 lines (81 loc) 1.9 kB
{ "name": "typeorm-translatable", "version": "0.2.0", "description": "Translation classes, utils and decorators for i18n in TypeORM", "keywords": [ "typeorm", "translatable", "i18n", "localization", "internalization" ], "bugs": { "url": "https://github.com/HanMoeHtet/typeorm-translatable/issues", "email": "hapo23lert@gmail.com" }, "author": "Han Moe Htet", "license": "MIT", "files": [ "dist" ], "main": "dist/index.js", "typings": "dist/index.d.ts", "module": "dist/.esm.js", "repository": { "type": "git", "url": "https://github.com/HanMoeHtet/typeorm-translatable" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "prepare": "tsdx build", "app": "ts-node -r dotenv/config app/src/index.ts", "test": "tsdx test", "test:watch": "tsdx test --watch", "lint": "tsdx lint", "size": "size-limit", "analyze": "size-limit --why", "prepublish": "npm run test && npm run build", "publish": "npm publish" }, "devDependencies": { "typeorm-translatable": "link:./dist/", "@size-limit/preset-small-lib": "^7.0.8", "dotenv": "^16.0.1", "husky": "^8.0.1", "mysql2": "^2.3.3", "size-limit": "^7.0.8", "ts-node": "^10.8.2", "tsdx": "^0.14.1", "tslib": "^2.4.0", "typeorm": "^0.3.7", "typescript": "^4.7.4" }, "peerDependencies": { "typeorm": "^0.3.7" }, "engines": { "node": ">=14" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "size-limit": [ { "path": "dist/.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/.esm.js", "limit": "10 KB" } ] }