-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1011 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1011 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
{
"name": "modesy",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "ts-node src/index.ts",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"help": "ts-node src/index.ts --help",
"cli": "ts-node src/cli-simple.ts",
"cli:build": "tsc",
"cli:dev": "ts-node src/cli-simple.ts"
},
"keywords": [],
"author": "Kudah Ndhlovu",
"license": "MIT",
"description": "Multi-language code generator that creates models, controllers, repositories, and views from SQL schema definitions across 12+ programming languages",
"dependencies": {
"@oclif/core": "^4.5.3",
"@oclif/plugin-help": "^6.2.33",
"@oclif/plugin-version": "^2.2.33",
"@types/winston": "^2.4.4",
"ts-node": "^10.9.2",
"winston": "^2.4.6"
},
"devDependencies": {
"@types/node": "^24.5.0",
"typescript": "^5.9.2"
},
"bin": {
"modesy": "./dist/cli.js"
},
"engines": {
"node": ">=14.0.0"
}
}