-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@axlabs/venice-e2ee-proxy",
"version": "1.0.1",
"description": "Lightweight OpenAI-compatible proxy that adds end-to-end encryption (E2EE) for Venice.ai TEE-backed models.",
"license": "Apache-2.0",
"author": "AxLabs <info@axlabs.com> (https://axlabs.com)",
"homepage": "https://github.com/AxLabs/venice-e2ee-proxy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/AxLabs/venice-e2ee-proxy.git"
},
"bugs": {
"url": "https://github.com/AxLabs/venice-e2ee-proxy/issues"
},
"keywords": [
"venice",
"venice-ai",
"e2ee",
"end-to-end-encryption",
"tee",
"intel-tdx",
"confidential-computing",
"attestation",
"openai",
"openai-compatible",
"proxy",
"llm",
"nestjs",
"privacy"
],
"bin": {
"venice-e2ee-proxy": "bin/venice-e2ee-proxy.js"
},
"main": "dist/main.js",
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"NOTICE.md",
".env.example"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"start": "node dist/main.js",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main.js",
"lint": "eslint \"{src,test}/**/*.ts\" --max-warnings 0",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"release": "./scripts/release.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@axlabs/venice-e2ee": "^0.2.0",
"@nestjs/common": "^11.0.0",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^11.0.0",
"@nestjs/platform-express": "^11.0.0",
"@nestjs/swagger": "^11.0.0",
"@phala/dcap-qvl": "^0.3.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@nestjs/cli": "^11.0.0",
"@nestjs/schematics": "^11.0.0",
"@nestjs/testing": "^11.0.0",
"@swc/core": "^1.10.1",
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"@types/supertest": "^6.0.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"unplugin-swc": "^1.5.1",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
}
}