-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.02 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"type": "module",
"name": "@hazae41/latrine",
"version": "1.1.4",
"description": "Secure and private reimplementation of the WalletConnect protocol",
"homepage": "https://github.com/hazae41/latrine",
"repository": "github:hazae41/latrine",
"author": "hazae41",
"license": "MIT",
"main": "./dist/cjs/src/index.cjs",
"module": "./dist/esm/src/index.mjs",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"files": [
"./dist/esm",
"./dist/cjs",
"./dist/types"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "node ./dist/test/index.test.mjs",
"prepare": "npm run build"
},
"peerDependencies": {
"@hazae41/base16": "^1.0.18",
"@hazae41/base58": "^1.0.7",
"@hazae41/base64": "^1.0.15",
"@hazae41/base64url": "^1.0.17",
"@hazae41/chacha20poly1305": "^1.0.8",
"@hazae41/ed25519": "^2.1.21",
"@hazae41/x25519": "^2.2.9"
},
"dependencies": {
"@hazae41/binary": "^1.3.5",
"@hazae41/box": "^2.0.1",
"@hazae41/bytes": "^1.2.11",
"@hazae41/cursor": "^1.2.4",
"@hazae41/future": "^1.0.3",
"@hazae41/jsonrpc": "^1.0.8",
"@hazae41/option": "^1.1.4",
"@hazae41/plume": "^3.0.5",
"@hazae41/result": "^1.3.1"
},
"devDependencies": {
"@hazae41/phobos": "^1.0.10",
"@hazae41/rimraf": "^1.0.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.5.3",
"rollup": "^4.21.2",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/src/index.mjs",
"require": "./dist/cjs/src/index.cjs"
}
},
"keywords": [
"walletconnect",
"latrine",
"wc",
"jsonrpc",
"rpc",
"safe",
"ed25519",
"x25519",
"websocket",
"result",
"rust",
"data",
"error",
"catching",
"ok",
"err",
"unwrap",
"wrap",
"typescript",
"esmodules",
"tested",
"unit-tested"
]
}