-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage-oclif.json
More file actions
44 lines (44 loc) · 1.05 KB
/
Copy pathpackage-oclif.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "modesy",
"version": "1.0.0",
"description": "Multi-language code generator that creates models, controllers, repositories, and views from SQL schema definitions across 12+ programming languages",
"author": "Kudah Ndhlovu",
"license": "MIT",
"main": "dist/cli.js",
"bin": {
"modesy": "./dist/cli.js"
},
"files": [
"dist",
"oclif.manifest.json"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif manifest && oclif readme",
"version": "oclif readme && git add README.md"
},
"dependencies": {
"@oclif/core": "^4.5.3",
"@oclif/plugin-help": "^6.2.33",
"@oclif/plugin-version": "^2.2.33",
"winston": "^2.4.6"
},
"devDependencies": {
"@types/node": "^24.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=14.0.0"
},
"oclif": {
"commands": "./dist/commands",
"bin": "modesy",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version"
]
}
}