-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.43 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
{
"author": "Andrew Zolotukhin <andrew_zol@cleverbrush.com>",
"bugs": {
"url": "https://github.com/cleverbrush/framework/issues",
"email": "andrew_zol@cleverbrush.com"
},
"bin": {
"cb-orm": "./dist/bin.js"
},
"dependencies": {
"@cleverbrush/knex-schema": "*",
"tsx": "^4.19.0"
},
"peerDependencies": {
"knex": ">=3.1.0"
},
"description": "CLI for @cleverbrush/orm — migrate generate/run/rollback/status and db push",
"files": [
"dist"
],
"homepage": "https://github.com/cleverbrush/framework/tree/master/libs/orm-cli#readme",
"keywords": [
"orm",
"knex",
"typescript",
"migrations",
"cli",
"cleverbrush"
],
"license": "BSD 3-Clause",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"name": "@cleverbrush/orm-cli",
"readme": "https://github.com/cleverbrush/framework/tree/master/libs/orm-cli#readme",
"repository": {
"type": "git",
"url": "github:cleverbrush/framework"
},
"scripts": {
"build": "tsup && tsc --project tsconfig.build.json --emitDeclarationOnly",
"clean": "rm -rf dist tsconfig.build.tsbuildinfo"
},
"type": "module",
"types": "./dist/index.d.ts",
"version": "4.3.2"
}