Initial code

This commit is contained in:
Aslan 2025-12-23 07:18:10 -05:00
commit 1f20a611da
26 changed files with 1050 additions and 0 deletions

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "aslobot-matrix",
"version": "0.1.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node dist/index.js"
},
"devDependencies": {
"@types/node": "^25.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"matrix-js-sdk": "^39.4.0"
}
}