Files
handler/package.json
EvolutionX 9174838b09 chore: added script
now whenever you are ready to release new version just type npm run release and see the magic
2022-02-14 23:00:16 +05:30

36 lines
838 B
JSON

{
"name": "sern-handler",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"release": "standard-version && git push --follow-tags"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"dayjs": "^1.10.7",
"discord.js": "^13.6.0",
"eslint": "^8.8.0",
"prettier": "^2.5.1",
"ts-results": "^3.3.0"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}