feat(api): Basic api

This commit is contained in:
Tibo De Peuter 2024-12-29 21:23:05 +01:00
parent d94735a9e8
commit 4ba189fa1f
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 1343 additions and 2 deletions

View file

@ -5,8 +5,8 @@
"main": "src/download.ts",
"scripts": {
"build": "tsc",
"start": "node dist/lucida.js",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"server": "npx ts-node src/index.ts"
},
"repository": {
"type": "git",
@ -15,9 +15,12 @@
"author": "Tibo De Peuter <tibo@depeuter.dev>",
"license": "UNLICENSED",
"dependencies": {
"body-parser": "^1.20.3",
"express": "^4.21.2",
"playwright": "1.47.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"typescript": "^5.7.2"
}