-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 KB
/
package.json
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
{
"name": "@debugr/mikroorm",
"version": "3.0.0-rc.7",
"description": "MikroORM plugin for Advanced application logger",
"author": {
"name": "Dan Kadera",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@debugr/core": "^3.0.0-rc.12",
"@debugr/sql-common": "^3.0.0-rc.6"
},
"devDependencies": {
"@mikro-orm/core": "^5.7.14"
},
"peerDependencies": {
"@mikro-orm/core": "^5.7.14"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"build": {
"src": "src/index.ts",
"externals": [
"@mikro-orm/core"
]
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build:cleanup": "../../.run build:cleanup",
"build:compile": "../../.run build:compile",
"build:declarations": "../../.run build:declarations",
"build:prettify": "../../.run build:prettify",
"build:main": "../../.run build:main",
"build": "../../.run build",
"lint": "../../.run lint",
"preversion": "../../.run release"
}
}