-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.88 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@utxos/sdk",
"version": "0.2.4",
"description": "UTXOS SDK - Web3 infrastructure platform for UTXO blockchains",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"react-native": {
"types": "./dist/index.d.ts",
"import": "./dist/index.native.js",
"require": "./dist/index.native.cjs"
},
"browser": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"default": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"./eslint/base": "./src/configs/eslint/base.js",
"./eslint/next.js": "./src/configs/eslint/next.js",
"./eslint/react-internal": "./src/configs/eslint/react-internal.js",
"./typescript/base.json": "./src/configs/typescript/base.json",
"./typescript/nextjs.json": "./src/configs/typescript/nextjs.json",
"./typescript/node.json": "./src/configs/typescript/node.json",
"./typescript/react-library.json": "./src/configs/typescript/react-library.json",
"./prettier": "./src/configs/prettier/index.js"
},
"react-native": "./dist/index.native.js",
"browser": "./dist/index.js",
"files": [
"dist/**"
],
"scripts": {
"build:sdk": "tsup",
"dev": "tsup --watch",
"test": "npx jest"
},
"devDependencies": {
"@types/base32-encoding": "^1.0.2",
"@types/chrome": "^0.0.323",
"@types/jest": "^29.5.14",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@utxos/api-contracts": "^0.0.1",
"@buildonspark/issuer-sdk": "^0.1.5",
"@buildonspark/spark-sdk": "0.5.0",
"@meshsdk/bitcoin": "1.9.0-beta.89",
"@meshsdk/common": "1.9.0-beta.89",
"@meshsdk/core-cst": "1.9.0-beta.89",
"@meshsdk/transaction": "1.9.0-beta.89",
"@meshsdk/wallet": "2.0.0-beta.5",
"@peculiar/webcrypto": "^1.5.0",
"axios": "^1.8.3",
"base32-encoding": "^1.0.0",
"uuid": "^11.1.0"
},
"peerDependencies": {
"react-native-quick-crypto": ">=0.7.0",
"@react-native-async-storage/async-storage": ">=1.19.0",
"react-native-inappbrowser-reborn": ">=3.7.0"
},
"peerDependenciesMeta": {
"react-native-quick-crypto": {
"optional": true
},
"@react-native-async-storage/async-storage": {
"optional": true
},
"react-native-inappbrowser-reborn": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"bitcoin",
"blockchain",
"cardano",
"sdk",
"spark",
"web3",
"react-native"
]
}