-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "@makerx/typeorm-pg-toolkit",
"version": "1.1.0",
"private": false,
"description": "MakerX TypeORM Postgres toolkit",
"author": "MakerX",
"license": "MIT",
"scripts": {
"build": "npm run clean && tsc && npm run build:copy-files",
"clean": "rimraf dist",
"build:copy-files": "copyfiles \"package.json\" dist",
"typeorm": "typeorm-ts-node-commonjs",
"audit": "better-npm-audit audit",
"lint": "eslint ./src/ --ext .ts",
"lint:fix": "eslint ./src/ --ext .ts --fix"
},
"bin": {
"typeorm-pg-toolkit": "./index.js"
},
"bugs": {
"url": "https://github.com/MakerXStudio/typeorm-pg-toolkit/issues"
},
"homepage": "https://github.com/MakerXStudio/typeorm-pg-toolkit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MakerXStudio/typeorm-pg-toolkit.git"
},
"engines": {
"node": ">=22.22.0"
},
"peerDependencies": {
"pg": "^8.11.3",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.8",
"@types/cross-spawn": "^6.0.4",
"@types/node": "^25.0.8",
"@types/pg": "^8.10.7",
"@types/prompt-sync": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"better-npm-audit": "^3.11.0",
"colors": "^1.4.0",
"copyfiles": "^2.4.1",
"cross-spawn": "^7.0.3",
"eslint": "8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prompt-sync": "^4.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.9.3"
}
}