first commit

This commit is contained in:
rus07tam 2026-01-07 14:47:29 +00:00
commit 8eb4fcf055
100 changed files with 28695 additions and 0 deletions

51
package.json Normal file
View file

@ -0,0 +1,51 @@
{
"name": "@ruject/xray-core",
"version": "0.2.0",
"description": "A Typescript SDK for xray-core gRPC Api",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "rm -rf dist && bun tsc",
"postpack": "rm -rf dist",
"build": "bun tsc"
},
"repository": "github:RuJect/ts-xray-core",
"homepage": "https://github.com/RuJect/ts-xray-core#readme",
"bugs": {
"url": "https://github.com/RuJect/ts-xray-core/issues"
},
"packageManager": "bun@1.3.5",
"author": "RuJect <https://github.com/RuJect>",
"license": "Unlicense",
"keywords": [
"api",
"grpc",
"typescript",
"sdk",
"xtls",
"xray",
"xray-core"
],
"dependencies": {
"@bufbuild/protobuf": "^2.10.2",
"nice-grpc": "^2.1.14",
"protobufjs": "^8.0.0",
"tar": "^7.5.2"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
}
}