forked from HarmonicLabs/gerolamo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@harmoniclabs/gerolamo",
"version": "0.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {
"node:worker_threads": false,
"worker_threads": false,
"node:fs": false,
"fs": false,
"node:os": false,
"os": false
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --project ./tsconfig.json && tsc-alias -p ./tsconfig.json",
"start": "npm run build && node ./dist/src/index.js",
"test": "jest"
},
"dependencies": {
"@harmoniclabs/cardano-ledger-ts": "^0.1.3",
"@harmoniclabs/cbor": "^1.1.5",
"@harmoniclabs/obj-utils": "^1.0.0",
"@harmoniclabs/ouroboros-miniprotocols-ts": "^0.0.2-dev7",
"@harmoniclabs/shared-cardano-mempool-ts": "^0.0.0-dev0",
"@harmoniclabs/shared-header-pool-ts": "^0.0.0-dev1",
"@harmoniclabs/uint8array-utils": "^1.0.3",
"@types/blake2": "^4.0.4",
"@types/node": "^20.1.7",
"blake2": "^5.0.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"author": "Harmonic Laboratories",
"license": "Apache-2.0",
"funding": "https://github.com/sponsors/HarmonicLabs"
}