typeorm 0.3.28 → 0.3.29-dev.73fda41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -282
package/package.json
CHANGED
|
@@ -1,282 +1 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "typeorm",
|
|
3
|
-
"version": "0.3.28",
|
|
4
|
-
"description": "Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.",
|
|
5
|
-
"homepage": "https://typeorm.io",
|
|
6
|
-
"bugs": {
|
|
7
|
-
"url": "https://github.com/typeorm/typeorm/issues"
|
|
8
|
-
},
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/typeorm/typeorm.git"
|
|
12
|
-
},
|
|
13
|
-
"funding": "https://opencollective.com/typeorm",
|
|
14
|
-
"license": "MIT",
|
|
15
|
-
"author": {
|
|
16
|
-
"name": "TypeORM",
|
|
17
|
-
"email": "maintainers@typeorm.io"
|
|
18
|
-
},
|
|
19
|
-
"exports": {
|
|
20
|
-
".": {
|
|
21
|
-
"types": "./index.d.ts",
|
|
22
|
-
"react-native": {
|
|
23
|
-
"default": "./browser/index.js"
|
|
24
|
-
},
|
|
25
|
-
"node": {
|
|
26
|
-
"types": "./index.d.ts",
|
|
27
|
-
"import": "./index.mjs",
|
|
28
|
-
"require": "./index.js"
|
|
29
|
-
},
|
|
30
|
-
"browser": {
|
|
31
|
-
"require": "./index.js",
|
|
32
|
-
"import": "./browser/index.js",
|
|
33
|
-
"default": "./index.js"
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"./browser": {
|
|
37
|
-
"types": "./index.d.ts",
|
|
38
|
-
"default": "./browser/index.js"
|
|
39
|
-
},
|
|
40
|
-
"./*.js": "./*.js",
|
|
41
|
-
"./*": {
|
|
42
|
-
"require": "./*.js",
|
|
43
|
-
"import": "./*"
|
|
44
|
-
}
|
|
45
|
-
},
|
|
46
|
-
"main": "./index.js",
|
|
47
|
-
"module": "./index.mjs",
|
|
48
|
-
"browser": {
|
|
49
|
-
"./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
50
|
-
"./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
51
|
-
"./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
52
|
-
"./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
53
|
-
"./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
54
|
-
"./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
55
|
-
"./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
56
|
-
"./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
57
|
-
"./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
58
|
-
"./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
59
|
-
"./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
60
|
-
"./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
61
|
-
"./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
62
|
-
"./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
63
|
-
"./browser/driver/sqlite/SqliteDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
64
|
-
"./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
65
|
-
"./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
66
|
-
"./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js",
|
|
67
|
-
"./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js",
|
|
68
|
-
"./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
69
|
-
"./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js",
|
|
70
|
-
"./index.js": "./browser/index.js",
|
|
71
|
-
"./index.mjs": "./browser/index.js"
|
|
72
|
-
},
|
|
73
|
-
"types": "./index.d.ts",
|
|
74
|
-
"bin": {
|
|
75
|
-
"typeorm": "./cli.js",
|
|
76
|
-
"typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js",
|
|
77
|
-
"typeorm-ts-node-esm": "./cli-ts-node-esm.js"
|
|
78
|
-
},
|
|
79
|
-
"scripts": {
|
|
80
|
-
"changelog": "standard-changelog",
|
|
81
|
-
"compile": "rimraf ./build && tsc",
|
|
82
|
-
"docs:dev": "cd docs && npm run start",
|
|
83
|
-
"format": "prettier --cache --write \"./**/*.ts\"",
|
|
84
|
-
"format:ci": "prettier --check \"./**/*.ts\"",
|
|
85
|
-
"lint": "eslint",
|
|
86
|
-
"pack": "gulp pack",
|
|
87
|
-
"package": "gulp package",
|
|
88
|
-
"pre-commit": "lint-staged",
|
|
89
|
-
"prepare": "is-ci || husky",
|
|
90
|
-
"publish:preview": "pkg-pr-new publish './build/package' --template='./sample/playground'",
|
|
91
|
-
"test": "npm run compile && npm run test:fast --",
|
|
92
|
-
"test:ci": "mocha --bail",
|
|
93
|
-
"test:fast": "mocha",
|
|
94
|
-
"typecheck": "tsc --noEmit",
|
|
95
|
-
"watch": "tsc --watch"
|
|
96
|
-
},
|
|
97
|
-
"dependencies": {
|
|
98
|
-
"@sqltools/formatter": "^1.2.5",
|
|
99
|
-
"ansis": "^4.2.0",
|
|
100
|
-
"app-root-path": "^3.1.0",
|
|
101
|
-
"buffer": "^6.0.3",
|
|
102
|
-
"dayjs": "^1.11.19",
|
|
103
|
-
"debug": "^4.4.3",
|
|
104
|
-
"dedent": "^1.7.0",
|
|
105
|
-
"dotenv": "^16.6.1",
|
|
106
|
-
"glob": "^10.5.0",
|
|
107
|
-
"reflect-metadata": "^0.2.2",
|
|
108
|
-
"sha.js": "^2.4.12",
|
|
109
|
-
"sql-highlight": "^6.1.0",
|
|
110
|
-
"tslib": "^2.8.1",
|
|
111
|
-
"uuid": "^11.1.0",
|
|
112
|
-
"yargs": "^17.7.2"
|
|
113
|
-
},
|
|
114
|
-
"devDependencies": {
|
|
115
|
-
"@eslint/js": "^9.39.1",
|
|
116
|
-
"@google-cloud/spanner": "^8.3.1",
|
|
117
|
-
"@sap/hana-client": "^2.26.26",
|
|
118
|
-
"@tsconfig/node16": "^16.1.8",
|
|
119
|
-
"@types/chai": "^4.3.20",
|
|
120
|
-
"@types/chai-as-promised": "^7.1.8",
|
|
121
|
-
"@types/debug": "^4.1.12",
|
|
122
|
-
"@types/gulp-rename": "^2.0.7",
|
|
123
|
-
"@types/gulp-sourcemaps": "^0.0.38",
|
|
124
|
-
"@types/mocha": "^10.0.10",
|
|
125
|
-
"@types/node": "^16.18.126",
|
|
126
|
-
"@types/sha.js": "^2.4.4",
|
|
127
|
-
"@types/sinon": "^10.0.20",
|
|
128
|
-
"@types/sinon-chai": "^3.2.12",
|
|
129
|
-
"@types/source-map-support": "^0.5.10",
|
|
130
|
-
"@types/yargs": "^17.0.35",
|
|
131
|
-
"better-sqlite3": "^8.7.0",
|
|
132
|
-
"c8": "^10.1.3",
|
|
133
|
-
"chai": "^4.5.0",
|
|
134
|
-
"chai-as-promised": "^7.1.2",
|
|
135
|
-
"class-transformer": "^0.5.1",
|
|
136
|
-
"eslint": "^9.39.1",
|
|
137
|
-
"eslint-plugin-jsdoc": "^61.4.1",
|
|
138
|
-
"globals": "^16.5.0",
|
|
139
|
-
"gulp": "^4.0.2",
|
|
140
|
-
"gulp-rename": "^2.1.0",
|
|
141
|
-
"gulp-replace": "^1.1.4",
|
|
142
|
-
"gulp-shell": "^0.8.0",
|
|
143
|
-
"gulp-sourcemaps": "^3.0.0",
|
|
144
|
-
"gulp-typescript": "^6.0.0-alpha.1",
|
|
145
|
-
"gulpclass": "^0.2.0",
|
|
146
|
-
"husky": "^9.1.7",
|
|
147
|
-
"is-ci": "^4.1.0",
|
|
148
|
-
"lint-staged": "^16.2.7",
|
|
149
|
-
"mocha": "^11.7.5",
|
|
150
|
-
"mongodb": "^6.21.0",
|
|
151
|
-
"mssql": "^12.1.1",
|
|
152
|
-
"mysql": "^2.18.1",
|
|
153
|
-
"mysql2": "^3.15.3",
|
|
154
|
-
"oracledb": "^6.10.0",
|
|
155
|
-
"pg": "^8.16.3",
|
|
156
|
-
"pg-query-stream": "^4.10.3",
|
|
157
|
-
"pkg-pr-new": "^0.0.60",
|
|
158
|
-
"prettier": "^2.8.8",
|
|
159
|
-
"redis": "^5.10.0",
|
|
160
|
-
"rimraf": "^5.0.10",
|
|
161
|
-
"sinon": "^16.1.3",
|
|
162
|
-
"sinon-chai": "^3.7.0",
|
|
163
|
-
"sort-package-json": "^2.15.1",
|
|
164
|
-
"source-map-support": "^0.5.21",
|
|
165
|
-
"sql.js": "^1.13.0",
|
|
166
|
-
"sqlite3": "^5.1.7",
|
|
167
|
-
"standard-changelog": "^7.0.1",
|
|
168
|
-
"ts-node": "^10.9.2",
|
|
169
|
-
"typescript": "^5.9.3",
|
|
170
|
-
"typescript-eslint": "^8.48.0"
|
|
171
|
-
},
|
|
172
|
-
"peerDependencies": {
|
|
173
|
-
"@google-cloud/spanner": "^5.18.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
|
|
174
|
-
"@sap/hana-client": "^2.14.22",
|
|
175
|
-
"better-sqlite3": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
176
|
-
"ioredis": "^5.0.4",
|
|
177
|
-
"mongodb": "^5.8.0 || ^6.0.0",
|
|
178
|
-
"mssql": "^9.1.1 || ^10.0.0 || ^11.0.0 || ^12.0.0",
|
|
179
|
-
"mysql2": "^2.2.5 || ^3.0.1",
|
|
180
|
-
"oracledb": "^6.3.0",
|
|
181
|
-
"pg": "^8.5.1",
|
|
182
|
-
"pg-native": "^3.0.0",
|
|
183
|
-
"pg-query-stream": "^4.0.0",
|
|
184
|
-
"redis": "^3.1.1 || ^4.0.0 || ^5.0.14",
|
|
185
|
-
"sql.js": "^1.4.0",
|
|
186
|
-
"sqlite3": "^5.0.3",
|
|
187
|
-
"ts-node": "^10.7.0",
|
|
188
|
-
"typeorm-aurora-data-api-driver": "^2.0.0 || ^3.0.0"
|
|
189
|
-
},
|
|
190
|
-
"peerDependenciesMeta": {
|
|
191
|
-
"@google-cloud/spanner": {
|
|
192
|
-
"optional": true
|
|
193
|
-
},
|
|
194
|
-
"@sap/hana-client": {
|
|
195
|
-
"optional": true
|
|
196
|
-
},
|
|
197
|
-
"better-sqlite3": {
|
|
198
|
-
"optional": true
|
|
199
|
-
},
|
|
200
|
-
"ioredis": {
|
|
201
|
-
"optional": true
|
|
202
|
-
},
|
|
203
|
-
"mongodb": {
|
|
204
|
-
"optional": true
|
|
205
|
-
},
|
|
206
|
-
"mssql": {
|
|
207
|
-
"optional": true
|
|
208
|
-
},
|
|
209
|
-
"mysql2": {
|
|
210
|
-
"optional": true
|
|
211
|
-
},
|
|
212
|
-
"oracledb": {
|
|
213
|
-
"optional": true
|
|
214
|
-
},
|
|
215
|
-
"pg": {
|
|
216
|
-
"optional": true
|
|
217
|
-
},
|
|
218
|
-
"pg-native": {
|
|
219
|
-
"optional": true
|
|
220
|
-
},
|
|
221
|
-
"pg-query-stream": {
|
|
222
|
-
"optional": true
|
|
223
|
-
},
|
|
224
|
-
"redis": {
|
|
225
|
-
"optional": true
|
|
226
|
-
},
|
|
227
|
-
"sql.js": {
|
|
228
|
-
"optional": true
|
|
229
|
-
},
|
|
230
|
-
"sqlite3": {
|
|
231
|
-
"optional": true
|
|
232
|
-
},
|
|
233
|
-
"ts-node": {
|
|
234
|
-
"optional": true
|
|
235
|
-
},
|
|
236
|
-
"typeorm-aurora-data-api-driver": {
|
|
237
|
-
"optional": true
|
|
238
|
-
}
|
|
239
|
-
},
|
|
240
|
-
"engines": {
|
|
241
|
-
"node": ">=16.13.0"
|
|
242
|
-
},
|
|
243
|
-
"collective": {
|
|
244
|
-
"type": "opencollective",
|
|
245
|
-
"url": "https://opencollective.com/typeorm",
|
|
246
|
-
"logo": "https://opencollective.com/opencollective/logo.txt"
|
|
247
|
-
},
|
|
248
|
-
"devEngines": {
|
|
249
|
-
"runtime": {
|
|
250
|
-
"name": "node",
|
|
251
|
-
"version": ">=20.19.0"
|
|
252
|
-
},
|
|
253
|
-
"packageManager": {
|
|
254
|
-
"name": "npm",
|
|
255
|
-
"version": "^10.8.2",
|
|
256
|
-
"onFail": "error"
|
|
257
|
-
}
|
|
258
|
-
},
|
|
259
|
-
"readmeFilename": "README.md",
|
|
260
|
-
"tags": [
|
|
261
|
-
"orm",
|
|
262
|
-
"typescript",
|
|
263
|
-
"typescript-orm",
|
|
264
|
-
"mariadb",
|
|
265
|
-
"mariadb-orm",
|
|
266
|
-
"mysql",
|
|
267
|
-
"mysql-orm",
|
|
268
|
-
"oracle",
|
|
269
|
-
"oracle-orm",
|
|
270
|
-
"postgresql",
|
|
271
|
-
"postgresql-orm",
|
|
272
|
-
"sap-hana",
|
|
273
|
-
"sap-hana-orm",
|
|
274
|
-
"spanner",
|
|
275
|
-
"cloud-spanner",
|
|
276
|
-
"cloud-spanner-orm",
|
|
277
|
-
"sqlite",
|
|
278
|
-
"sqlite-orm",
|
|
279
|
-
"sql-server",
|
|
280
|
-
"sql-server-orm"
|
|
281
|
-
]
|
|
282
|
-
}
|
|
1
|
+
{ "name": "typeorm", "version": "0.3.29-dev.73fda41", "description": "Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.", "homepage": "https://typeorm.io", "bugs": { "url": "https://github.com/typeorm/typeorm/issues" }, "repository": { "type": "git", "url": "https://github.com/typeorm/typeorm.git" }, "funding": "https://opencollective.com/typeorm", "license": "MIT", "author": { "name": "TypeORM", "email": "maintainers@typeorm.io" }, "exports": { ".": { "types": "./index.d.ts", "react-native": { "default": "./browser/index.js" }, "node": { "types": "./index.d.ts", "import": "./index.mjs", "require": "./index.js" }, "browser": { "require": "./index.js", "import": "./browser/index.js", "default": "./index.js" } }, "./browser": { "types": "./index.d.ts", "default": "./browser/index.js" }, "./*.js": "./*.js", "./*": { "require": "./*.js", "import": "./*" } }, "main": "./index.js", "module": "./index.mjs", "browser": { "./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js", "./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sqlite/SqliteDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js", "./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js", "./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js", "./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js", "./index.js": "./browser/index.js", "./index.mjs": "./browser/index.js" }, "types": "./index.d.ts", "bin": { "typeorm": "./cli.js", "typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js", "typeorm-ts-node-esm": "./cli-ts-node-esm.js" }, "scripts": { "changelog": "standard-changelog", "compile": "rimraf ./build && tsc", "docs:dev": "cd docs && npm run start", "format": "prettier --cache --write \"./**/*.ts\"", "format:ci": "prettier --check \"./**/*.ts\"", "lint": "eslint", "pack": "gulp pack", "package": "gulp package", "pre-commit": "lint-staged", "prepare": "is-ci || husky", "publish:preview": "pkg-pr-new publish './build/package' --template='./sample/playground'", "test": "npm run compile && npm run test:fast --", "test:ci": "mocha --bail", "test:fast": "mocha", "typecheck": "tsc --noEmit", "watch": "tsc --watch" }, "dependencies": { "@sqltools/formatter": "^1.2.5", "ansis": "^4.2.0", "app-root-path": "^3.1.0", "buffer": "^6.0.3", "dayjs": "^1.11.19", "debug": "^4.4.3", "dedent": "^1.7.0", "dotenv": "^16.6.1", "glob": "^10.5.0", "reflect-metadata": "^0.2.2", "sha.js": "^2.4.12", "sql-highlight": "^6.1.0", "tslib": "^2.8.1", "uuid": "^11.1.0", "yargs": "^17.7.2" }, "devDependencies": { "@eslint/js": "^9.39.1", "@google-cloud/spanner": "^8.3.1", "@sap/hana-client": "^2.26.26", "@tsconfig/node16": "^16.1.8", "@types/chai": "^4.3.20", "@types/chai-as-promised": "^7.1.8", "@types/debug": "^4.1.12", "@types/gulp-rename": "^2.0.7", "@types/gulp-sourcemaps": "^0.0.38", "@types/mocha": "^10.0.10", "@types/node": "^16.18.126", "@types/sha.js": "^2.4.4", "@types/sinon": "^10.0.20", "@types/sinon-chai": "^3.2.12", "@types/source-map-support": "^0.5.10", "@types/yargs": "^17.0.35", "better-sqlite3": "^8.7.0", "c8": "^10.1.3", "chai": "^4.5.0", "chai-as-promised": "^7.1.2", "class-transformer": "^0.5.1", "eslint": "^9.39.1", "eslint-plugin-jsdoc": "^61.4.1", "globals": "^16.5.0", "gulp": "^4.0.2", "gulp-rename": "^2.1.0", "gulp-replace": "^1.1.4", "gulp-shell": "^0.8.0", "gulp-sourcemaps": "^3.0.0", "gulp-typescript": "^6.0.0-alpha.1", "gulpclass": "^0.2.0", "husky": "^9.1.7", "is-ci": "^4.1.0", "lint-staged": "^16.2.7", "mocha": "^11.7.5", "mongodb": "^6.21.0", "mssql": "^12.1.1", "mysql": "^2.18.1", "mysql2": "^3.15.3", "oracledb": "^6.10.0", "pg": "^8.16.3", "pg-query-stream": "^4.10.3", "pkg-pr-new": "^0.0.60", "prettier": "^2.8.8", "redis": "^5.10.0", "rimraf": "^5.0.10", "sinon": "^16.1.3", "sinon-chai": "^3.7.0", "sort-package-json": "^2.15.1", "source-map-support": "^0.5.21", "sql.js": "^1.13.0", "sqlite3": "^5.1.7", "standard-changelog": "^7.0.1", "ts-node": "^10.9.2", "typescript": "^5.9.3", "typescript-eslint": "^8.48.0" }, "peerDependencies": { "@google-cloud/spanner": "^5.18.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@sap/hana-client": "^2.14.22", "better-sqlite3": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0", "ioredis": "^5.0.4", "mongodb": "^5.8.0 || ^6.0.0", "mssql": "^9.1.1 || ^10.0.0 || ^11.0.0 || ^12.0.0", "mysql2": "^2.2.5 || ^3.0.1", "oracledb": "^6.3.0", "pg": "^8.5.1", "pg-native": "^3.0.0", "pg-query-stream": "^4.0.0", "redis": "^3.1.1 || ^4.0.0 || ^5.0.14", "sql.js": "^1.4.0", "sqlite3": "^5.0.3", "ts-node": "^10.7.0", "typeorm-aurora-data-api-driver": "^2.0.0 || ^3.0.0" }, "peerDependenciesMeta": { "@google-cloud/spanner": { "optional": true }, "@sap/hana-client": { "optional": true }, "better-sqlite3": { "optional": true }, "ioredis": { "optional": true }, "mongodb": { "optional": true }, "mssql": { "optional": true }, "mysql2": { "optional": true }, "oracledb": { "optional": true }, "pg": { "optional": true }, "pg-native": { "optional": true }, "pg-query-stream": { "optional": true }, "redis": { "optional": true }, "sql.js": { "optional": true }, "sqlite3": { "optional": true }, "ts-node": { "optional": true }, "typeorm-aurora-data-api-driver": { "optional": true } }, "engines": { "node": ">=16.13.0" }, "collective": { "type": "opencollective", "url": "https://opencollective.com/typeorm", "logo": "https://opencollective.com/opencollective/logo.txt" }, "devEngines": { "runtime": { "name": "node", "version": ">=20.19.0" }, "packageManager": { "name": "npm", "version": "^10.8.2", "onFail": "error" } }, "readmeFilename": "README.md", "tags": [ "orm", "typescript", "typescript-orm", "mariadb", "mariadb-orm", "mysql", "mysql-orm", "oracle", "oracle-orm", "postgresql", "postgresql-orm", "sap-hana", "sap-hana-orm", "spanner", "cloud-spanner", "cloud-spanner-orm", "sqlite", "sqlite-orm", "sql-server", "sql-server-orm" ] }
|