-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "@utxorpc/blaze-provider",
"version": "0.3.5",
"description": "An UTxO RPC provider for the Blaze transaction builder",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf node_modules && rm -rf lib",
"prepublish": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@blaze-cardano/core": "^0.6.1",
"@blaze-cardano/query": "^0.3.5",
"@blaze-cardano/sdk": "^0.2.19",
"@blaze-cardano/tsconfig": "^0.0.3",
"@utxorpc/sdk": "^0.6.7",
"@utxorpc/spec": "^0.16.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}