-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.95 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@zk-email/sdk",
"version": "0.0.98",
"description": "ZK Email SDK for TypeScript",
"main": "./dist/index.js",
"module": "./dist/zk-email-sdk.es.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/zk-email-sdk.cjs.js",
"import": "./dist/zk-email-sdk.es.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist",
"NPM-README.md",
"assets"
],
"scripts": {
"build-old": "bunx tsup src/index.ts src/localProverWorker.ts --format esm,cjs --dts",
"build": "vite build",
"build-prove-worker": "bun x vite build --config vite.config.worker.ts && bun scripts/escape_str_chars.js",
"publish": "bun run build && npm publish --access public",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "bun run build",
"clean": "rm -rf dist",
"publish-nightly": "bun run build && npm publish --access public --tag nightly"
},
"keywords": [
"zk",
"email",
"sdk",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@rollup/plugin-typescript": "^12.1.2",
"@types/bun": "^1.1.12",
"@types/pg": "^8.11.10",
"open": "^10.1.0",
"pg": "^8.13.0",
"prettier": "^3.3.3",
"rollup-plugin-node-polyfills": "^0.2.1",
"vite": "^6.0.7",
"vite-plugin-commonjs": "^0.10.4",
"crypto-browserify": "^3.12.1",
"stream-browserify": "^3.0.0",
"buffer": "^6.0.3",
"vite-plugin-replace": "^0.1.1",
"localforage": "^1.10.0",
"localforage-memoryStorageDriver": "^0.9.2",
"pako": "^2.1.0",
"snarkjs": "https://github.com/sampritipanda/snarkjs.git#fef81fc51d17a734637555c6edbd585ecda02d9e"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@zk-email/relayer-utils": "0.4.61",
"ethers": "^6.13.4",
"viem": "^2.21.53",
"zod": "^3.23.8"
}
}