typeorm 0.3.25-dev.ead4f98 → 0.3.25
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 +271 -1
package/package.json
CHANGED
|
@@ -1 +1,271 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"name": "typeorm",
|
|
3
|
+
"version": "0.3.25",
|
|
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": "Umed Khudoiberdiev",
|
|
17
|
+
"email": "pleerock.me@gmail.com"
|
|
18
|
+
},
|
|
19
|
+
"exports": {
|
|
20
|
+
".": {
|
|
21
|
+
"types": "./index.d.ts",
|
|
22
|
+
"node": {
|
|
23
|
+
"import": "./index.mjs",
|
|
24
|
+
"require": "./index.js",
|
|
25
|
+
"types": "./index.d.ts"
|
|
26
|
+
},
|
|
27
|
+
"browser": {
|
|
28
|
+
"require": "./index.js",
|
|
29
|
+
"import": "./browser/index.js",
|
|
30
|
+
"default": "./index.js"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"./browser": {
|
|
34
|
+
"types": "./index.d.ts",
|
|
35
|
+
"default": "./browser/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./*.js": "./*.js",
|
|
38
|
+
"./*": {
|
|
39
|
+
"require": "./*.js",
|
|
40
|
+
"import": "./*"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"main": "./index.js",
|
|
44
|
+
"module": "./index.mjs",
|
|
45
|
+
"browser": {
|
|
46
|
+
"./browser/connection/ConnectionOptionsReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
47
|
+
"./browser/connection/options-reader/ConnectionOptionsXmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
48
|
+
"./browser/connection/options-reader/ConnectionOptionsYmlReader.js": "./browser/platform/BrowserConnectionOptionsReaderDummy.js",
|
|
49
|
+
"./browser/driver/aurora-data-api/AuroraDataApiDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
50
|
+
"./browser/driver/better-sqlite3/BetterSqlite3Driver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
51
|
+
"./browser/driver/cockroachdb/CockroachDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
52
|
+
"./browser/driver/mongodb/MongoDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
53
|
+
"./browser/driver/mongodb/MongoQueryRunner.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
54
|
+
"./browser/driver/mongodb/bson.typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
55
|
+
"./browser/driver/mongodb/typings.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
56
|
+
"./browser/driver/mysql/MysqlDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
57
|
+
"./browser/driver/oracle/OracleDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
58
|
+
"./browser/driver/postgres/PostgresDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
59
|
+
"./browser/driver/sap/SapDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
60
|
+
"./browser/driver/sqlite/SqliteDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
61
|
+
"./browser/driver/sqlserver/SqlServerDriver.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
62
|
+
"./browser/entity-manager/MongoEntityManager.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
63
|
+
"./browser/logger/FileLogger.js": "./browser/platform/BrowserFileLoggerDummy.js",
|
|
64
|
+
"./browser/platform/PlatformTools.js": "./browser/platform/BrowserPlatformTools.js",
|
|
65
|
+
"./browser/repository/MongoRepository.js": "./browser/platform/BrowserDisabledDriversDummy.js",
|
|
66
|
+
"./browser/util/DirectoryExportedClassesLoader.js": "./browser/platform/BrowserDirectoryExportedClassesLoader.js",
|
|
67
|
+
"./index.js": "./browser/index.js",
|
|
68
|
+
"./index.mjs": "./browser/index.js"
|
|
69
|
+
},
|
|
70
|
+
"types": "./index.d.ts",
|
|
71
|
+
"bin": {
|
|
72
|
+
"typeorm": "./cli.js",
|
|
73
|
+
"typeorm-ts-node-commonjs": "./cli-ts-node-commonjs.js",
|
|
74
|
+
"typeorm-ts-node-esm": "./cli-ts-node-esm.js"
|
|
75
|
+
},
|
|
76
|
+
"scripts": {
|
|
77
|
+
"changelog": "standard-changelog",
|
|
78
|
+
"compile": "rimraf ./build && tsc",
|
|
79
|
+
"docs:dev": "cd docs && npm run start",
|
|
80
|
+
"format": "prettier --cache --write \"./**/*.ts\"",
|
|
81
|
+
"format:ci": "prettier --check \"./**/*.ts\"",
|
|
82
|
+
"lint": "eslint .",
|
|
83
|
+
"pack": "gulp pack",
|
|
84
|
+
"package": "gulp package",
|
|
85
|
+
"pre-commit": "lint-staged",
|
|
86
|
+
"prepare": "husky",
|
|
87
|
+
"publish:preview": "pkg-pr-new publish './build/package' --pnpm --template='./sample/playground'",
|
|
88
|
+
"test": "npm run compile && npm run test:fast --",
|
|
89
|
+
"test:ci": "mocha --bail",
|
|
90
|
+
"test:fast": "mocha",
|
|
91
|
+
"typecheck": "tsc --noEmit",
|
|
92
|
+
"watch": "tsc --watch"
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@sqltools/formatter": "^1.2.5",
|
|
96
|
+
"ansis": "^3.17.0",
|
|
97
|
+
"app-root-path": "^3.1.0",
|
|
98
|
+
"buffer": "^6.0.3",
|
|
99
|
+
"dayjs": "^1.11.13",
|
|
100
|
+
"debug": "^4.4.0",
|
|
101
|
+
"dedent": "^1.6.0",
|
|
102
|
+
"dotenv": "^16.4.7",
|
|
103
|
+
"glob": "^10.4.5",
|
|
104
|
+
"sha.js": "^2.4.11",
|
|
105
|
+
"sql-highlight": "^6.0.0",
|
|
106
|
+
"tslib": "^2.8.1",
|
|
107
|
+
"uuid": "^11.1.0",
|
|
108
|
+
"yargs": "^17.7.2"
|
|
109
|
+
},
|
|
110
|
+
"devDependencies": {
|
|
111
|
+
"@eslint/js": "^9.28.0",
|
|
112
|
+
"@sap/hana-client": "^2.24.21",
|
|
113
|
+
"@tsconfig/node16": "^16.1.4",
|
|
114
|
+
"@types/chai": "^4.3.20",
|
|
115
|
+
"@types/chai-as-promised": "^7.1.8",
|
|
116
|
+
"@types/debug": "^4.1.12",
|
|
117
|
+
"@types/gulp-rename": "^2.0.6",
|
|
118
|
+
"@types/gulp-sourcemaps": "^0.0.38",
|
|
119
|
+
"@types/mocha": "^10.0.10",
|
|
120
|
+
"@types/node": "^16.18.126",
|
|
121
|
+
"@types/sha.js": "^2.4.4",
|
|
122
|
+
"@types/sinon": "^10.0.20",
|
|
123
|
+
"@types/sinon-chai": "^4.0.0",
|
|
124
|
+
"@types/source-map-support": "^0.5.10",
|
|
125
|
+
"@types/yargs": "^17.0.33",
|
|
126
|
+
"better-sqlite3": "^8.7.0",
|
|
127
|
+
"chai": "^4.5.0",
|
|
128
|
+
"chai-as-promised": "^7.1.2",
|
|
129
|
+
"class-transformer": "^0.5.1",
|
|
130
|
+
"eslint": "^9.28.0",
|
|
131
|
+
"globals": "^16.2.0",
|
|
132
|
+
"gulp": "^4.0.2",
|
|
133
|
+
"gulp-rename": "^2.0.0",
|
|
134
|
+
"gulp-replace": "^1.1.4",
|
|
135
|
+
"gulp-shell": "^0.8.0",
|
|
136
|
+
"gulp-sourcemaps": "^3.0.0",
|
|
137
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
138
|
+
"gulpclass": "^0.2.0",
|
|
139
|
+
"hdb-pool": "^0.1.6",
|
|
140
|
+
"husky": "^9.1.7",
|
|
141
|
+
"lint-staged": "^15.5.2",
|
|
142
|
+
"mocha": "^10.8.2",
|
|
143
|
+
"mongodb": "^6.15.0",
|
|
144
|
+
"mssql": "^11.0.1",
|
|
145
|
+
"mysql": "^2.18.1",
|
|
146
|
+
"mysql2": "^3.14.0",
|
|
147
|
+
"nyc": "^17.1.0",
|
|
148
|
+
"oracledb": "^6.8.0",
|
|
149
|
+
"pg": "^8.14.1",
|
|
150
|
+
"pg-query-stream": "^4.8.1",
|
|
151
|
+
"pkg-pr-new": "^0.0.43",
|
|
152
|
+
"prettier": "^2.8.8",
|
|
153
|
+
"redis": "^4.7.0",
|
|
154
|
+
"remap-istanbul": "^0.13.0",
|
|
155
|
+
"rimraf": "^5.0.10",
|
|
156
|
+
"sinon": "^15.2.0",
|
|
157
|
+
"sinon-chai": "^3.7.0",
|
|
158
|
+
"sort-package-json": "^2.15.1",
|
|
159
|
+
"source-map-support": "^0.5.21",
|
|
160
|
+
"sql.js": "^1.13.0",
|
|
161
|
+
"sqlite3": "^5.1.7",
|
|
162
|
+
"standard-changelog": "^6.0.0",
|
|
163
|
+
"ts-node": "^10.9.2",
|
|
164
|
+
"typescript": "^5.8.3",
|
|
165
|
+
"typescript-eslint": "^8.33.1"
|
|
166
|
+
},
|
|
167
|
+
"peerDependencies": {
|
|
168
|
+
"@google-cloud/spanner": "^5.18.0 || ^6.0.0 || ^7.0.0",
|
|
169
|
+
"@sap/hana-client": "^2.12.25",
|
|
170
|
+
"better-sqlite3": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
|
|
171
|
+
"hdb-pool": "^0.1.6",
|
|
172
|
+
"ioredis": "^5.0.4",
|
|
173
|
+
"mongodb": "^5.8.0 || ^6.0.0",
|
|
174
|
+
"mssql": "^9.1.1 || ^10.0.1 || ^11.0.1",
|
|
175
|
+
"mysql2": "^2.2.5 || ^3.0.1",
|
|
176
|
+
"oracledb": "^6.3.0",
|
|
177
|
+
"pg": "^8.5.1",
|
|
178
|
+
"pg-native": "^3.0.0",
|
|
179
|
+
"pg-query-stream": "^4.0.0",
|
|
180
|
+
"redis": "^3.1.1 || ^4.0.0",
|
|
181
|
+
"reflect-metadata": "^0.1.14 || ^0.2.0",
|
|
182
|
+
"sql.js": "^1.4.0",
|
|
183
|
+
"sqlite3": "^5.0.3",
|
|
184
|
+
"ts-node": "^10.7.0",
|
|
185
|
+
"typeorm-aurora-data-api-driver": "^2.0.0 || ^3.0.0"
|
|
186
|
+
},
|
|
187
|
+
"peerDependenciesMeta": {
|
|
188
|
+
"@google-cloud/spanner": {
|
|
189
|
+
"optional": true
|
|
190
|
+
},
|
|
191
|
+
"@sap/hana-client": {
|
|
192
|
+
"optional": true
|
|
193
|
+
},
|
|
194
|
+
"better-sqlite3": {
|
|
195
|
+
"optional": true
|
|
196
|
+
},
|
|
197
|
+
"hdb-pool": {
|
|
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
|
+
"readmeFilename": "README.md",
|
|
249
|
+
"tags": [
|
|
250
|
+
"orm",
|
|
251
|
+
"typescript",
|
|
252
|
+
"typescript-orm",
|
|
253
|
+
"mariadb",
|
|
254
|
+
"mariadb-orm",
|
|
255
|
+
"mysql",
|
|
256
|
+
"mysql-orm",
|
|
257
|
+
"oracle",
|
|
258
|
+
"oracle-orm",
|
|
259
|
+
"postgresql",
|
|
260
|
+
"postgresql-orm",
|
|
261
|
+
"sap-hana",
|
|
262
|
+
"sap-hana-orm",
|
|
263
|
+
"spanner",
|
|
264
|
+
"cloud-spanner",
|
|
265
|
+
"cloud-spanner-orm",
|
|
266
|
+
"sqlite",
|
|
267
|
+
"sqlite-orm",
|
|
268
|
+
"sql-server",
|
|
269
|
+
"sql-server-orm"
|
|
270
|
+
]
|
|
271
|
+
}
|