init-projects/typescript/package.json
2023-09-07 17:09:24 +02:00

28 lines
655 B
JSON

{
"name": "PROJECT_NAME",
"version": "1.0.0",
"description": "DESCRIPTION_PROJECT",
"main": "./dist/main.js",
"scripts": {
"main": "rm -r dist 2> /dev/null; npx tsc && node ./dist/index.js",
"lint": "npx eslint src",
"format": "npx prettier --check src"
},
"repository": {
"type": "git",
"url": "URL_TO_YOUR_GIT_PROJECT"
},
"keywords": [
"KEYWORD"
],
"author": "YOU",
"license": "AGPL-3.0-or-later",
"dependencies": {
"typescript": "~5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~6.6.0",
"@typescript-eslint/parser": "~6.6.0",
"prettier-eslint": "~15.0.1"
}
}