feat: populate script list

This commit is contained in:
2026-01-10 09:08:14 -03:00
parent 1a3bc54bcb
commit aed1ee515a
+9 -2
View File
@@ -4,8 +4,15 @@
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"build": "npx tsc", "build": "tsc",
"start": "node dist/index.js" "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": { "repository": {
"type": "git", "type": "git",