mtcute/packages/create-bot/template/package.json.hbs

28 lines
738 B
Handlebars
Raw Normal View History

{
"name": "{{ name }}",
"license": "MIT",
2023-10-31 21:17:39 +03:00
"version": "0.0.0",
"type": "module",
"scripts": {
{{#if features.linters}}
2024-03-17 20:16:04 +03:00
"prepare": "husky || true",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"src/**/*.ts\"",
{{/if}}
2024-03-23 22:53:35 +03:00
{{#if (eq packageManager "bun")}}
{{#if features.typescript}}
"start": "bun ./src/index.ts"
{{else}}
"start": "bun ./src/index.js"
{{/if}}
{{else}}
{{#if features.typescript}}
"start": "tsc && dotenv node ./dist/index.js",
"build": "tsc"
{{else}}
"start": "dotenv node ./src/index.js"
{{/if}}
2024-03-23 22:53:35 +03:00
{{/if}}
}
}