typeorm-extension
Version:
A library to create/drop database, simple seeding data sets, ...
103 lines (102 loc) • 3.07 kB
JSON
{
"name": "typeorm-extension",
"version": "3.9.0",
"description": "A library to create/drop database, simple seeding data sets, ...",
"author": {
"name": "Peter Placzek",
"email": "contact@tada5hi.net",
"url": "https://github.com/tada5hi"
},
"repository": {
"type": "git",
"url": "https://github.com/tada5hi/typeorm-extension.git"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./bin/*": "./bin/*"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": "^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0"
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rimraf dist && rimraf bin && npm run build:types && npm run build:js",
"build:watch": "npm run build -- --watch",
"commit": "npx git-cz",
"test": "jest --config ./test/jest.config.js",
"test:coverage": "cross-env NODE_ENV=test jest --config ./test/jest.config.js --coverage",
"lint": "eslint --ext .js,.vue,.ts ./src ./test",
"lint:fix": "npm run lint -- --fix",
"docs:dev": "vitepress dev docs --temp .temp",
"docs:build": "vitepress build docs --temp .temp",
"docs:help": "vitepress --help",
"prepare": "husky install"
},
"keywords": [
"database",
"create",
"drop",
"api",
"json-api",
"jsonapi",
"migration",
"seeder",
"seeding",
"cli"
],
"bin": {
"typeorm-extension": "bin/cli.cjs",
"typeorm-extension-esm": "bin/cli.mjs"
},
"license": "MIT",
"dependencies": {
"consola": "^3.4.0",
"envix": "^1.5.0",
"locter": "^2.2.1",
"pascal-case": "^3.1.2",
"rapiq": "^0.9.0",
"reflect-metadata": "^0.2.2",
"smob": "^1.5.0",
"yargs": "^18.0.0"
},
"peerDependencies": {
"@faker-js/faker": ">=8.4.1",
"typeorm": "~0.3.0"
},
"devDependencies": {
"@faker-js/faker": "^9.9.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@swc/core": "^1.15.3",
"@tada5hi/commitlint-config": "^1.2.6",
"@tada5hi/eslint-config-typescript": "^1.2.17",
"@tada5hi/tsconfig": "^0.6.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"better-sqlite3": "^12.4.6",
"cross-env": "^10.1.0",
"eslint": "^8.56.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"rimraf": "^6.1.2",
"rollup": "^4.53.3",
"ts-jest": "^29.4.5",
"typeorm": "^0.3.27",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vue": "^3.5.25",
"workspaces-publish": "^1.5.0"
}
}