feat: start implementing api proxy with ability to use hooks: #8

This commit is contained in:
Kentai Radiquum 2025-06-27 00:19:03 +05:00
parent 9931962a6b
commit 6f45876240
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
6 changed files with 1720 additions and 0 deletions

20
api-prox/package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "anix-api-proxy",
"version": "1.0.0",
"description": "Proxy and Hook requests from anix to anixart api",
"main": "index.ts",
"scripts": {
"serve": "npx tsx ./index.ts"
},
"author": "Radiquum",
"license": "MIT",
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.0.4",
"typescript": "^5.8.3"
},
"dependencies": {
"express": "^5.1.0",
"tsx": "^4.20.3"
}
}