ts-node-app
Version:
CLI para geração de componentes em arquiteturas DDD, hexagonal ou Clean Architecture ...
48 lines • 943 B
JSON
{
"name": "ts-node-app",
"version": "0.3.1",
"description": "CLI para geração de componentes em arquiteturas DDD, hexagonal ou Clean Architecture ...",
"main": "./bin/index.js",
"scripts": {
"start": "node ./bin/index.js",
"watch": "node --watch ./bin/index.js"
},
"keywords": [
"architecture",
"cli",
"ddd",
"hexagonal",
"clean architecture",
"mvc"
],
"author": "Matheus Corrêa",
"repository": {
"type": "git",
"url": "git+https://github.com/mathec-x/architektor"
},
"license": "ISC",
"bin": {
"ts-node-app": "bin/index.js",
"tsna": "bin/index.js"
},
"type": "module",
"imports": {
"#core/*": [
"./src/*.js"
]
},
"dependencies": {
"commander": "^13.1.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"eslint": "^9.22.0",
"globals": "^16.0.0"
},
"files": [
"bin",
"src",
"patterns",
"defaults"
]
}