@mostajs/orm-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +29 -0
- package/README.md +138 -0
- package/bin/mostajs-launcher.cjs +35 -0
- package/bin/mostajs.bat +490 -0
- package/bin/mostajs.sh +994 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mostajs/orm-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Universal CLI to integrate @mostajs/orm into any project — auto-detects Prisma, OpenAPI, JSON Schema. Interactive menu + subcommands. 13 databases.",
|
|
5
|
+
"author": "Dr Hamid MADANI <drmdh@msn.com>",
|
|
6
|
+
"license": "AGPL-3.0-or-later",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": {
|
|
9
|
+
"mostajs": "./bin/mostajs-launcher.cjs"
|
|
10
|
+
},
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mostajs",
|
|
18
|
+
"orm",
|
|
19
|
+
"cli",
|
|
20
|
+
"prisma",
|
|
21
|
+
"openapi",
|
|
22
|
+
"json-schema",
|
|
23
|
+
"adapter",
|
|
24
|
+
"multi-database",
|
|
25
|
+
"schema-conversion",
|
|
26
|
+
"bridge"
|
|
27
|
+
],
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/apolocine/mosta-orm-cli.git"
|
|
31
|
+
},
|
|
32
|
+
"bugs": {
|
|
33
|
+
"url": "https://github.com/apolocine/mosta-orm-cli/issues"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/apolocine/mosta-orm-cli#readme",
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18.0.0"
|
|
38
|
+
},
|
|
39
|
+
"os": [
|
|
40
|
+
"linux",
|
|
41
|
+
"darwin",
|
|
42
|
+
"win32"
|
|
43
|
+
]
|
|
44
|
+
}
|