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

25 lines
632 B
Handlebars
Raw Normal View History

{
"name": "{{ name }}",
"license": "MIT",
2023-10-31 21:17:39 +03:00
"version": "0.0.0",
{{#if features.typescript}}
"main": "dist/index.js",
{{else}}
"main": "src/index.js",
{{/if}}
"type": "module",
"scripts": {
{{#if features.linters}}
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"src/**/*.ts\"",
{{/if}}
{{#if features.typescript}}
"start": "tsc && dotenv node ./dist/index.js",
"build": "tsc"
{{else}}
"start": "dotenv node ./src/index.js"
{{/if}}
}
}