-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.45 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
81
82
83
84
85
86
87
88
89
{
"name": "@tetherto/wdk-react-native-core",
"version": "1.0.0-beta.11",
"description": "Core functionality for React Native wallets - wallet management, balance fetching, and worklet operations",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"react-native": "./src/index.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"tsconfig.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"react-native": "./src/index.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tetherto/wdk-react-native-core.git"
},
"bugs": {
"url": "https://github.com/tetherto/wdk-react-native-core/issues"
},
"homepage": "https://github.com/tetherto/wdk-react-native-core#readme",
"scripts": {
"build": "tsc",
"build:strict": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix --max-warnings 0",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepack": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"wallet",
"react-native",
"core",
"crypto",
"blockchain",
"balance"
],
"author": "Tether",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@tanstack/react-query": "^5.101.0",
"@tetherto/pear-wrk-wdk": "1.0.0-beta.8",
"@tetherto/wdk-react-native-secure-storage": "1.0.0-beta.4",
"expo-crypto": "^55.0.15",
"immer": "^11.1.8",
"react-native-bare-kit": "^0.12.3",
"react-native-mmkv": "^4.3.1",
"zod": "^3.25.76",
"zustand": "^5.0.14"
},
"devDependencies": {
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.4.0",
"@types/jest": "^29.5.0",
"@types/react": "^19.0.0",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"eslint": "^9.39.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.57.2"
},
"peerDependencies": {
"react-native": ">=0.70.0"
}
}