This commit is contained in:
GW_MC
2026-01-23 16:08:36 +08:00
commit 3120b93f60
5 changed files with 874 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "IotDis",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsx src/index.ts",
"build": "tsc src/index.ts --outDir dist --esModuleInterop",
"start": "node dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.13.2",
"discord-rpc": "^4.0.1",
"dotenv": "^17.2.3"
},
"devDependencies": {
"@types/discord-rpc": "^4.0.10",
"@types/node": "^25.0.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}