-
-
Notifications
You must be signed in to change notification settings - Fork 631
Expand file tree
/
Copy pathpackage.json
More file actions
174 lines (174 loc) · 4.91 KB
/
package.json
File metadata and controls
174 lines (174 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "@mikro-orm/root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"version": "7.0.0",
"description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mikro-orm/mikro-orm.git"
},
"funding": "https://github.com/sponsors/b4nan",
"keywords": [
"orm",
"mongo",
"mongodb",
"mysql",
"mariadb",
"postgresql",
"sqlite",
"sqlite3",
"ts",
"typescript",
"js",
"javascript",
"entity",
"ddd",
"mikro-orm",
"unit-of-work",
"data-mapper",
"identity-map"
],
"author": "Martin Adámek",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikro-orm/mikro-orm/issues"
},
"homepage": "https://mikro-orm.io",
"scripts": {
"prepare": "husky",
"clean": "yarn workspaces foreach -Ap run clean && rimraf packages/*/*.tsbuildinfo",
"build": "yarn workspaces foreach -Ap --topological-dev run build",
"publish:prod": "lerna publish from-package --contents dist --force-publish",
"release:prod": "yarn build && yarn publish:prod",
"publish:next": "lerna publish from-package --contents dist --dist-tag next --force-publish",
"publish:rc": "lerna publish from-package --contents dist --dist-tag rc --force-publish",
"publish:jsr": "node scripts/publish-jsr.mjs",
"release:next": "yarn workspaces foreach -Ap run compile && yarn publish:next",
"release:pin-versions": "yarn workspaces foreach -Ap run copy -- --pin-versions",
"test": "vitest run",
"test:sqlite": "vitest run **/*.sqlite.test.ts **/*.win.test.ts",
"test:fast": "vitest run --exclude='tests/features/schema-generator'",
"bench": "tsx tests/bench/basic.bench.ts",
"bench:types": "bash -c 'for f in tests/bench/types/*.ts; do node --import=tsx \"$f\" || exit 1; done'",
"clean-tests": "rimraf temp tests/generated-entities",
"tsc-check-tests": "NODE_OPTIONS='--max-old-space-size=6144' tsc --noEmit --project tests/tsconfig.json",
"coverage": "yarn clean-tests && yarn test --coverage",
"lint": "oxlint packages tests --tsconfig=tsconfig.json --type-aware",
"lint:fix": "oxlint packages tests --tsconfig=tsconfig.json --fix --type-aware",
"format": "oxfmt packages tests --write",
"format:check": "oxfmt packages tests"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"oxlint --fix",
"oxfmt --write --no-error-on-unmatched-pattern"
]
},
"renovate": {
"extends": [
"config:base",
":preserveSemverRanges",
":semanticCommitTypeAll(chore)"
],
"semanticCommits": "enabled",
"minimumReleaseAge": "1 day",
"separateMajorMinor": false,
"dependencyDashboard": false,
"packageRules": [
{
"matchUpdateTypes": [
"patch",
"minor"
],
"groupName": "patch/minor dependencies",
"groupSlug": "all-non-major",
"automerge": true,
"automergeType": "branch"
}
],
"schedule": [
"every weekday"
],
"ignoreDeps": [
"mysql",
"@docusaurus/*",
"@apify/docusaurus-plugin-typedoc-api",
"typedoc"
]
},
"engines": {
"node": ">= 22.17.0",
"yarn": ">=4.6.0"
},
"resolutions": {
"@ark/util": "0.56.0"
},
"dependenciesMeta": {
"@swc/core": {
"built": true
},
"better-sqlite3": {
"built": true
},
"esbuild": {
"built": true
},
"nx": {
"built": true
},
"oracledb": {
"built": true
}
},
"devDependencies": {
"@ark/attest": "0.56.0",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@mikro-orm/mongo-highlighter": "1.0.0",
"@mikro-orm/sql-highlighter": "1.0.1",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.30",
"@types/better-sqlite3": "7.6.13",
"@types/node": "24.12.2",
"@types/oracledb": "6.10.3",
"@types/pg": "8.20.0",
"@types/pg-cursor": "2.7.2",
"@types/picomatch": "4.0.3",
"@types/semver": "7.7.1",
"@types/sqlstring": "2.3.2",
"@types/uuid": "11.0.0",
"@types/yargs": "17.0.35",
"@vitest/coverage-v8": "4.1.4",
"bson": "7.2.0",
"conditional-type-checks": "1.0.6",
"dataloader": "2.2.3",
"husky": "9.1.7",
"jiti": "2.6.1",
"jsr": "0.14.3",
"knex": "3.2.9",
"lerna": "9.0.7",
"lint-staged": "16.4.0",
"mongodb-memory-server-core": "11.0.1",
"oxfmt": "0.46.0",
"oxlint": "1.61.0",
"oxlint-tsgolint": "^0.21.0",
"reflect-metadata": "0.2.2",
"rimraf": "6.1.3",
"tsimp": "2.0.12",
"tsx": "4.21.0",
"typescript": "6.0.3",
"unplugin-swc": "1.5.9",
"uuid": "14.0.0",
"vitest": "4.1.4"
},
"packageManager": "yarn@4.14.1"
}