diff options
| author | Your Name <you@example.com> | 2026-03-21 01:41:17 +0100 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-03-21 01:41:17 +0100 |
| commit | 768b537946da0abd89949648b803d625542c8a7d (patch) | |
| tree | 6fbce39026bf008d3c05fc58cfd0b97cc84ab7e4 /package.json | |
| parent | 09e546c4a7e1bf69784be5e8fe1200a7d5a8c955 (diff) | |
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/package.json b/package.json index 292fd79..b4c0fae 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,9 @@ "description": "", "main": "index.js", "scripts": { - "start": "node index.js" + "start": "node index.js", + "lint": "eslint .", + "lint:fix": "eslint . --fix" }, "keywords": [], "author": "", @@ -18,5 +20,10 @@ "dotenv": "^17.2.3", "opusscript": "^0.1.1", "sodium-native": "^5.0.9" + }, + "devDependencies": { + "@eslint/js": "^10.0.1", + "eslint": "^10.1.0", + "globals": "^17.4.0" } } |
