diff --git a/package.json b/package.json index 1ff4987..e0230a8 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,15 @@ "description": "", "main": "index.js", "scripts": { - "build": "npx tsc", - "start": "node dist/index.js" + "build": "tsc", + "start": "node dist/index.js", + "dev": "tsx watch src/index.ts", + "watch": "tsc --watch", + "clean": "rm -rf dist", + "build:clean": "npm run clean && npm run build", + "lint": "eslint", + "format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc", + "format:apply": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc" }, "repository": { "type": "git", @@ -31,4 +38,4 @@ "dotenv": "^17.2.3", "prettier": "^3.7.4" } -} +} \ No newline at end of file