@keshavsoft/kschema-cli 1.12.11 → 1.12.13
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/bin/cli.js +1 -1
- package/bin/v12/commands/express/steps/locateSource.js +3 -1
- package/bin/v12/commands/express/template/v4/.env +8 -0
- package/bin/v12/commands/express/template/v4/.env.local +7 -0
- package/bin/v12/commands/express/template/v4/.vscode/launch.json +12 -0
- package/bin/v12/commands/express/template/v4/Config/Schemas/BillsTable.json +165 -0
- package/bin/v12/commands/express/template/v4/Config/Schemas/ItemsTable.json +200 -0
- package/bin/v12/commands/express/template/v4/Config/Schemas/LedgerNames.json +60 -0
- package/bin/v12/commands/express/template/v4/Config/Schemas/StockItems.json +50 -0
- package/bin/v12/commands/express/template/v4/Config/api.json +8 -0
- package/bin/v12/commands/express/template/v4/Config/schema.json +8 -0
- package/bin/v12/commands/express/template/v4/Config/ui.json +8 -0
- package/bin/v12/commands/express/template/v4/Public/index.html +129 -0
- package/bin/v12/commands/express/template/v4/app.js +12 -0
- package/bin/v12/commands/express/template/v4/config.json +4 -0
- package/bin/v12/commands/express/template/v4/configLoader.js +6 -0
- package/bin/v12/commands/express/template/v4/package-lock.json +834 -0
- package/bin/v12/commands/express/template/v4/package.json +18 -0
- package/bin/v12/commands/express/template/v4/port.js +6 -0
- package/bin/v12/commands/express/template/v4/routes.js +5 -0
- package/bin/v12/commands/express/template/v4/server.js +11 -0
- package/bin/v12/commands/express/template/v5/.env +9 -0
- package/bin/v12/commands/express/template/v5/.env.local +7 -0
- package/bin/v12/commands/express/template/v5/.vscode/launch.json +12 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/BillsTable.json +165 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/ItemsTable.json +200 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/LedgerNames.json +60 -0
- package/bin/v12/commands/express/template/v5/Config/Schemas/StockItems.json +50 -0
- package/bin/v12/commands/express/template/v5/Config/api.json +8 -0
- package/bin/v12/commands/express/template/v5/Config/schema.json +8 -0
- package/bin/v12/commands/express/template/v5/Config/ui.json +8 -0
- package/bin/v12/commands/express/template/v5/Public/index.html +129 -0
- package/bin/v12/commands/express/template/v5/app.js +19 -0
- package/bin/v12/commands/express/template/v5/config.json +4 -0
- package/bin/v12/commands/express/template/v5/configLoader.js +6 -0
- package/bin/v12/commands/express/template/v5/package-lock.json +834 -0
- package/bin/v12/commands/express/template/v5/package.json +18 -0
- package/bin/v12/commands/express/template/v5/port.js +6 -0
- package/bin/v12/commands/express/template/v5/routes.js +5 -0
- package/bin/v12/commands/express/template/v5/server.js +13 -0
- package/package.json +1 -1