forked from elkimek/venice-e2ee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.85 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
{
"name": "@axlabs/venice-e2ee",
"version": "0.2.0",
"description": "End-to-end encryption for Venice AI's TEE-backed inference (ECDH secp256k1 + HKDF-SHA256 + AES-256-GCM)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dcap": {
"types": "./dist/dcap.d.ts",
"import": "./dist/dcap.js"
}
},
"files": [
"dist",
"README.md",
"ARCHITECTURE.md",
"SECURITY.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"build:browser": "esbuild src/index.ts --bundle --format=esm --outfile=dist/venice-e2ee.browser.js --target=es2022",
"test": "vitest run",
"test:watch": "vitest",
"release": "./scripts/release.sh",
"prepublishOnly": "npm run test && npm run build"
},
"dependencies": {
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^2.1.0"
},
"peerDependencies": {
"@phala/dcap-qvl": "^0.3.9"
},
"peerDependenciesMeta": {
"@phala/dcap-qvl": {
"optional": true
}
},
"devDependencies": {
"@phala/dcap-qvl": "^0.3.9",
"esbuild": "^0.27.4",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"author": "AxLabs (https://axlabs.com)",
"license": "GPL-3.0-only",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AxLabs/venice-e2ee.git"
},
"bugs": {
"url": "https://github.com/AxLabs/venice-e2ee/issues"
},
"homepage": "https://github.com/AxLabs/venice-e2ee#readme",
"keywords": [
"venice",
"venice-ai",
"e2ee",
"end-to-end-encryption",
"encryption",
"tee",
"intel-tdx",
"attestation",
"secp256k1",
"ecdh",
"hkdf",
"aes-gcm",
"axlabs"
]
}