logsdu v0.1 skeleton

This commit is contained in:
2026-08-10 14:25:30 -03:00
commit 436130ecb9
11 changed files with 1142 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "logsdu",
"version": "0.1.0",
"description": "Browser extension that fills and submits a three-field academic portal login.",
"author": "Ruben Carlo Benante <rcb@beco.cc>",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"esbuild": "0.25.5",
"typescript": "^5.8.3"
}
}