forked from utxorpc/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "@utxorpc/sdk",
"version": "0.6.3",
"description": "A client library to interact with UTxO RPC compliant endpoints",
"main": "./lib/node/index.js",
"module": "./lib/node/index.mjs",
"browser": "./lib/browser/index.js",
"scripts": {
"build": "npm run build:node && npm run build:browser",
"build:node": "tsup src/index.ts --env.NODE_ENV=node",
"build:browser": "tsup src/index.ts --env.NODE_ENV=browser",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utxorpc/node-sdk.git"
},
"keywords": [
"utxorpc",
"blockchain"
],
"author": "scarmuega",
"license": "MIT",
"bugs": {
"url": "https://github.com/utxorpc/node-sdk/issues"
},
"homepage": "https://github.com/utxorpc/node-sdk#readme",
"devDependencies": {
"tsup": "^8.2.4",
"tsx": "4.19.0",
"typescript": "5.5.4"
},
"dependencies": {
"@connectrpc/connect": "1.4",
"@connectrpc/connect-node": "1.4",
"@connectrpc/connect-web": "1.4",
"@types/node": "20.14.10",
"@utxorpc/spec": "0.10.1",
"buffer": "^6.0.3"
},
"exports": {
".": {
"node": {
"types": "./lib/node/index.d.ts",
"import": "./lib/node/index.mjs",
"require": "./lib/node/index.js"
},
"browser": {
"types": "./lib/browser/index.d.ts",
"import": "./lib/browser/index.mjs",
"require": "./lib/browser/index.js"
},
"default": "./lib/node/index.js"
}
},
"imports": {
"@sdk/*": "./src/*"
},
"files": [
"lib",
"src"
]
}