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
80 lines (80 loc) · 2.2 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@turnkey/core",
"version": "1.10.0",
"description": "A core JavaScript web and React Native package for interfacing with Turnkey's infrastructure.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"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/core"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/__generated__/version.ts",
"build": "rollup -c",
"clean": "rimraf ./dist ./.cache",
"typecheck": "tsc -p tsconfig.typecheck.json",
"prepublishOnly": "pnpm run clean && pnpm run build",
"test": "jest"
},
"keywords": [
"turnkey"
],
"license": "MIT",
"dependencies": {
"@turnkey/api-key-stamper": "workspace:*",
"@turnkey/crypto": "workspace:*",
"@turnkey/encoding": "workspace:*",
"@turnkey/http": "workspace:*",
"@turnkey/sdk-types": "workspace:*",
"@turnkey/webauthn-stamper": "workspace:*",
"@wallet-standard/app": "^1.1.0",
"@wallet-standard/base": "^1.1.0",
"@walletconnect/sign-client": "^2.23.0",
"@walletconnect/types": "^2.23.0",
"cross-fetch": "^3.1.5",
"ethers": "^6.10.0",
"jwt-decode": "4.0.0",
"uuid": "^11.1.0",
"viem": "^2.33.1"
},
"devDependencies": {
"glob": "^8.0.3",
"typescript": "5.4.3"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^2.2.0",
"@turnkey/react-native-passkey-stamper": "workspace:*",
"react-native-keychain": "^8.1.0 || ^9.2.2 || ^10.0.0"
},
"peerDependenciesMeta": {
"react-native-keychain": {
"optional": true
},
"@react-native-async-storage/async-storage": {
"optional": true
},
"@turnkey/react-native-passkey-stamper": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}