first commit! 🎉

This commit is contained in:
ari melody 2024-11-03 22:54:37 +00:00
commit a7b6a4573a
Signed by: ari
GPG key ID: CF99829C92678188
8 changed files with 622 additions and 0 deletions

19
package.json Normal file
View file

@ -0,0 +1,19 @@
{
"name": "ari-stream-panels",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "ari melody <ari@arimelody.me>",
"license": "ISC",
"dependencies": {
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.13"
}
}