forked from tkhq/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
63
64
65
{
"name": "@turnkey/crypto",
"version": "2.8.8",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.mjs"
}
},
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "Encryption, decryption, and key related utility functions",
"author": {
"name": "Turnkey",
"url": "https://turnkey.com/"
},
"homepage": "https://github.com/tkhq/sdk",
"bugs": {
"url": "https://github.com/tkhq/sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkhq/sdk.git",
"directory": "packages/crypto"
},
"files": [
"dist/",
"CHANGELOG.md",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "pnpm run clean && pnpm run build",
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"test": "jest",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@noble/ciphers": "1.3.0",
"@noble/curves": "1.9.0",
"@noble/hashes": "1.8.0",
"@peculiar/x509": "1.12.3",
"@turnkey/encoding": "workspace:*",
"@turnkey/sdk-types": "workspace:*",
"borsh": "2.0.0",
"cbor-js": "0.1.0"
},
"devDependencies": {
"@turnkey/api-key-stamper": "workspace:*",
"@turnkey/http": "workspace:*",
"@types/cbor-js": "^0.1.1",
"@types/jest": "^29.5.3",
"jest": "29.7.0"
}
}