|
| 1 | +{ |
| 2 | + "providers": [ |
| 3 | + "@athenna/core/providers/CoreProvider" |
| 4 | + ], |
| 5 | + "commands": { |
| 6 | + "configure": "@athenna/artisan/commands/ConfigureCommand", |
| 7 | + "template:customize": "@athenna/artisan/commands/TemplateCustomizeCommand", |
| 8 | + "make:exception": "@athenna/core/commands/MakeExceptionCommand", |
| 9 | + "make:facade": "@athenna/core/commands/MakeFacadeCommand", |
| 10 | + "make:provider": "@athenna/core/commands/MakeProviderCommand", |
| 11 | + "make:service": "@athenna/core/commands/MakeServiceCommand", |
| 12 | + "make:test": "@athenna/core/commands/MakeTestCommand", |
| 13 | + "make:command": "@athenna/artisan/commands/MakeCommandCommand", |
| 14 | + "serve": { |
| 15 | + "path": "@athenna/core/commands/ServeCommand", |
| 16 | + "stayAlive": true |
| 17 | + }, |
| 18 | + "build": { |
| 19 | + "path": "@athenna/core/commands/BuildCommand", |
| 20 | + "outDir": "build", |
| 21 | + "tsconfig": "node_modules/@athenna/tsconfig/tsconfig.app-build.json", |
| 22 | + "include": [ |
| 23 | + "package.json", |
| 24 | + "package-lock.json", |
| 25 | + "README.md", |
| 26 | + "LICENSE.md", |
| 27 | + "templates/*.edge", |
| 28 | + "bin/.athennarc.prod.json" |
| 29 | + ] |
| 30 | + }, |
| 31 | + "test": { |
| 32 | + "path": "@athenna/core/commands/TestCommand", |
| 33 | + "loadAllCommands": true, |
| 34 | + "stayAlive": true |
| 35 | + }, |
| 36 | + "repl": { |
| 37 | + "path": "@athenna/core/commands/ReplCommand", |
| 38 | + "stayAlive": true |
| 39 | + }, |
| 40 | + "install": { |
| 41 | + "path": "@athenna/core/commands/InstallCommand", |
| 42 | + "registry": "npm" |
| 43 | + }, |
| 44 | + "new": { |
| 45 | + "path": "#src/console/commands/new.command", |
| 46 | + "loadApp": true |
| 47 | + }, |
| 48 | + "version": { |
| 49 | + "path": "#src/console/commands/version.command", |
| 50 | + "loadApp": true |
| 51 | + } |
| 52 | + }, |
| 53 | + "templates": { |
| 54 | + "artisan": "templates/artisan.edge", |
| 55 | + "exception": "node_modules/@athenna/core/templates/exception.edge", |
| 56 | + "facade": "node_modules/@athenna/core/templates/facade.edge", |
| 57 | + "provider": "node_modules/@athenna/core/templates/provider.edge", |
| 58 | + "service": "node_modules/@athenna/core/templates/service.edge", |
| 59 | + "test": "node_modules/@athenna/core/templates/test.edge", |
| 60 | + "test-console": "node_modules/@athenna/core/templates/test-console.edge", |
| 61 | + "test-fn": "node_modules/@athenna/core/templates/test-fn.edge", |
| 62 | + "command": "node_modules/@athenna/artisan/templates/command.edge" |
| 63 | + } |
| 64 | +} |
0 commit comments