-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
49
{
"name": "@bemi-db/typeorm",
"version": "1.2.0",
"description": "Automatic database change tracking for TypeORM.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"bin": {
"bemi": "./dist/cli.js"
},
"repository": "git://github.com/BemiHQ/bemi-typeorm.git",
"author": "",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/BemiHQ/bemi-typeorm/issues"
},
"homepage": "https://github.com/BemiHQ/bemi-typeorm#readme",
"dependencies": {
"commander": "^11.1.0",
"typeorm": "^0.3.17"
},
"peerDependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"ts-node": "^10.9.1",
"tsup": "^8.0.1",
"typescript": "^5.0.0"
},
"registry-url": "https://registry.npmjs.org/",
"scripts": {
"build": "tsup"
},
"tsup": {
"entry": [
"src/index.ts",
"src/cli.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"splitting": false,
"sourcemap": true,
"clean": true
}
}