-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 KB
/
package.json
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
{
"name": "@diffusefi/zktls-ts-cli",
"version": "0.2.0",
"description": "General zkTLS interface library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"tsup": {
"entry": [
"src/index.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"build": "sh build.sh",
"test": "vitest"
},
"author": "zktls",
"SEE LICENSE IN https://github.com/Diffuse-fi/zktls-ts-cli/blob/master/LICENSE.md",
"dependencies": {
"@diffusefi/fetch-proof-server": "file:fetch-proof-server",
"@swc/core": "^1.6.13",
"ethers": "^5.7.2",
"pino": "^8.20.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"tsup": "^8.1.0",
"typescript": "^5.4.5",
"vitest": "^2.0.3"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/diffuse-fi/fetch-proof-client"
},
"keywords": [
"zk",
"zktls",
"diffuse-fi"
]
}