-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.62 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.62 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
{
"name": "@sapientpro/typeorm-eager-load",
"version": "0.0.16",
"description": "TypeORM Eager Loader is a package that provides a simple way to optimize database queries by eagerly loading data based on defined relations",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Dmyto Kulyk",
"email": "dmytro.kulyk@sapient.prom"
},
"repository": {
"type": "git",
"url": "https://github.com/sapientpro/typeorm-eager-load.git"
},
"bugs": {
"url": "https://github.com/sapientpro/typeorm-eager-load/issues"
},
"homepage": "https://github.com/sapientpro/typeorm-eager-load",
"tags": [
"orm",
"typescript",
"typeorm",
"eager-load"
],
"engines": {
"node": ">= 20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run compile",
"build": "tsc",
"compile": "rimraf ./dist && npm run build",
"watch": "tsc -w",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"conventional-changelog-angular": "^5.0.13",
"conventional-changelog-cli": "^2.2.2",
"rimraf": "^4.4.1",
"typeorm": "^0.3.15",
"typescript": "^4.9.5"
},
"dependencies": {
"tslib": "^2.5.0"
},
"peerDependencies": {
"typeorm": "^0.3.12"
},
"peerDependenciesMeta": {
"typeorm": {
"optional": false
}
},
"files": [
"dist",
"src"
]
}