-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "@blockfrost/blockfrost-utils",
"version": "2.8.1",
"repository": "[email protected]:blockfrost/blockfrost-utils.git",
"license": "Apache-2.0",
"author": "blockfrost.io",
"main": "./lib/index.js",
"files": [
"lib/**/*.js",
"lib/**/*.ts"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf lib",
"lint": "eslint ./src/**/*.ts",
"prepublishOnly": "yarn build",
"type-check": "tsc --project ./tsconfig.types.json",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-nodejs": "^11.4.0",
"bech32": "^2.0.0",
"cbor": "^9.0.0",
"crc": "^4.3.2",
"pm2": "^5.3.0",
"prom-client": "^14.2.0",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"fastify": "^4.18.0",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"sinon": "^15.1.2",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vitest": "^0.32.0"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]"
}