3xworkaround
Version:
This is an interface for 3x-ui panel. It will help developers to create, edit and delete inbounds and clients in a simple way.
68 lines (67 loc) • 2.19 kB
JSON
{
"name": "3xworkaround",
"description": "This is an interface for 3x-ui panel. It will help developers to create, edit and delete inbounds and clients in a simple way.",
"version": "2.2.1",
"type": "module",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js",
"types": "./build/esm/index.d.ts"
}
},
"types": "build/esm/index.d.ts",
"author": {
"email": "khodayari.khoram@gmail.com",
"name": "Mehdi Khodayari",
"url": "https://github.com/mehdikhody"
},
"scripts": {
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:package-json",
"build:clean": "rm -rf build",
"build:esm": "tsc -p tsconfig.esm.json && resolve-tspaths -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json && resolve-tspaths -p tsconfig.cjs.json",
"build:package-json": "node build-utils.js",
"format": "prettier --write .",
"test": "vitest ."
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@types/node": "^20.16.11",
"@types/qs": "^6.9.11",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"resolve-tspaths": "^0.8.22",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2",
"xray-zod": "^1.0.0",
"zod": "^3.23.8"
},
"dependencies": {
"async-mutex": "^0.5.0",
"axios": "^1.6.4",
"node-cache": "^5.1.2",
"proxy-agent": "^6.3.1",
"qs": "^6.11.2",
"url-join": "^5.0.0",
"winston": "^3.11.0"
},
"keywords": [
"xray",
"x-ui",
"3x-ui",
"3x-ui-js"
],
"repository": {
"type": "git",
"url": "https://github.com/mehdikhody/3x-ui-js"
}
}