-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@utxorpc/blaze-provider",
"version": "0.2.2",
"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.4.4",
"@blaze-cardano/query": "^0.2.15",
"@blaze-cardano/sdk": "^0.1.30",
"@blaze-cardano/tsconfig": "^0.0.2",
"@utxorpc/sdk": "0.6.2",
"@utxorpc/spec": "0.10.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"
}
}