This commit is contained in:
Tianpao
2025-11-01 18:37:18 +08:00
parent 58dee045a4
commit fb2e7b34ab
5 changed files with 601 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "openeasytier",
"version": "1.0.0",
"description": "service for community",
"keywords": [
"EasyTier"
],
"repository": {
"type": "git",
"url": "https://github.com/Tianpao/OpenEasyTier.git"
},
"license": "MIT",
"author": "Tianpao",
"type": "module",
"main": "index.js",
"packageManager": "pnpm@10.18.0",
"scripts": {
"start": "node ./dist/index.js",
"build": "tsc",
"test": "tsc&&node ./dist/index.js"
},
"dependencies": {
"got": "^14.6.1",
"ms": "^2.1.3",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"socket.io-client": "^4.8.1"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/node": "^24.9.2",
"typescript": "^5.9.3"
}
}