chore: init

This commit is contained in:
2026-01-29 16:41:55 +02:00
commit b26a659d0c
19 changed files with 587 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "eklase-api-wrapper",
"version": "0.1.0",
"main": "dist/index.js",
"dependencies": {
"axios": "^1.13.2",
"playwright-core": "^1.58.0"
},
"description": "TypeScript Bun wrapper for the e-klase authentication API with tests.",
"license": "MIT",
"scripts": {
"build": "bun build",
"test": "bun test"
},
"types": "dist/index.d.ts",
"private": true,
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}