-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 972 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 972 Bytes
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
{
"name": "@chelproc/typeorm-to-drawio",
"author": "chelproc",
"description": "A CLI tool to generate Draw.io ER diagrams from TypeORM entities",
"version": "1.0.3",
"license": "MIT",
"type": "module",
"main": "./dist/main.js",
"bin": {
"typeorm-to-drawio": "./dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/chelproc/typeorm-to-drawio.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsc",
"start": "tsx src/main.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"elkjs": "^0.11.0",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "^24.7.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}