@unionlabs/payments 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -0
- package/dist/LICENSE +1 -0
- package/dist/chunk-37PNLRA6.js +2418 -0
- package/dist/cli.cjs +3031 -0
- package/dist/cli.js +675 -0
- package/dist/index.cjs +2451 -0
- package/dist/index.js +1 -0
- package/dist/package.json +18 -0
- package/dist/payments.d.ts +835 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/package.json +60 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
+
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
+
{
|
|
4
|
+
"tsdocVersion": "0.12",
|
|
5
|
+
"toolPackages": [
|
|
6
|
+
{
|
|
7
|
+
"packageName": "@microsoft/api-extractor",
|
|
8
|
+
"packageVersion": "7.55.1"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@unionlabs/payments",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "TypeScript SDK for Union Private Payments - privacy-preserving transfers using zero-knowledge proofs",
|
|
5
|
+
"author": "Union.fi Labs, Inc.",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.cjs",
|
|
9
|
+
"module": "dist/index.js",
|
|
10
|
+
"typings": "dist/payments.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist"
|
|
13
|
+
],
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"effect": "^3.0.0",
|
|
16
|
+
"viem": "^2.0.0"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@bufbuild/protobuf": "^2.10.1",
|
|
20
|
+
"@connectrpc/connect": "^2.1.1",
|
|
21
|
+
"@connectrpc/connect-web": "^2.1.1",
|
|
22
|
+
"@noble/curves": "^2.0.1",
|
|
23
|
+
"commander": "^14.0.2",
|
|
24
|
+
"viem": "^2.0.0"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@bufbuild/buf": "^1.61.0",
|
|
28
|
+
"@bufbuild/protoc-gen-es": "^2.10.1",
|
|
29
|
+
"@effect/language-service": "^0.60.0",
|
|
30
|
+
"@microsoft/api-documenter": "^7.28.1",
|
|
31
|
+
"@microsoft/api-extractor": "^7.55.1",
|
|
32
|
+
"@types/node": "^24.0.0",
|
|
33
|
+
"effect": "^3.0.0",
|
|
34
|
+
"tsup": "^8.5.1",
|
|
35
|
+
"tsx": "^4.21.0",
|
|
36
|
+
"typescript": "^5.3.0",
|
|
37
|
+
"viem": "^2.0.0",
|
|
38
|
+
"vite-node": "^5.2.0",
|
|
39
|
+
"vitest": "^4.0.14"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"ethereum",
|
|
43
|
+
"zk-snark",
|
|
44
|
+
"privacy",
|
|
45
|
+
"grpc",
|
|
46
|
+
"union"
|
|
47
|
+
],
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsup",
|
|
50
|
+
"dev": "tsup --watch",
|
|
51
|
+
"check": "tsc -b tsconfig.json",
|
|
52
|
+
"api:check": "api-extractor run --verbose",
|
|
53
|
+
"api:extract": "api-extractor run --verbose --local && api-documenter markdown -i temp -o docs/api",
|
|
54
|
+
"api:document": "api-documenter markdown -i temp -o docs/api",
|
|
55
|
+
"example": "tsx --tsconfig ./tsconfig.examples.json",
|
|
56
|
+
"test": "vitest",
|
|
57
|
+
"lint": "eslint src --ext .ts",
|
|
58
|
+
"proto": "buf generate"
|
|
59
|
+
}
|
|
60
|
+
}
|