-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (61 loc) · 1.34 KB
/
package.json
File metadata and controls
62 lines (61 loc) · 1.34 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
{
"name": "venice-e2ee",
"version": "0.1.0",
"description": "End-to-end encryption for Venice AI's TEE-backed inference",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./dcap": {
"import": "./dist/dcap.js",
"types": "./dist/dcap.d.ts"
}
},
"files": [
"dist"
],
"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"
},
"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": {
"esbuild": "^0.27.4",
"typescript": "^5.4.0",
"vitest": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elkimek/venice-e2ee.git"
},
"bugs": {
"url": "https://github.com/elkimek/venice-e2ee/issues"
},
"homepage": "https://github.com/elkimek/venice-e2ee#readme",
"license": "GPL-3.0-only",
"keywords": [
"venice",
"e2ee",
"encryption",
"tee",
"secp256k1",
"aes-gcm"
]
}