This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.84 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.84 KB
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
{
"name": "@helios-lang/ledger-babbage",
"version": "0.3.14",
"description": "Cardano ledger types for Babbage era",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types && pnpm run test:suite",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"prepack": "pnpm run build",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types && pnpm run test:suite",
"test:pretty": "prettier . --check",
"test:suite": "node --test --experimental-test-coverage",
"test:types": "pnpm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeliosLang/ledger-babbage.git"
},
"keywords": [
"Cardano",
"blockchain",
"ledger",
"smart",
"contracts"
],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HeliosLang/ledger-babbage/issues"
},
"homepage": "https://github.com/HeliosLang/ledger-babbage#readme",
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@types/node": "^22.5.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"dependencies": {
"@helios-lang/cbor": "^0.2.2",
"@helios-lang/codec-utils": "^0.3.1",
"@helios-lang/crypto": "^0.2.0",
"@helios-lang/ledger-allegra": "^0.1.3",
"@helios-lang/ledger-alonzo": "^0.1.6",
"@helios-lang/ledger-byron": "0.2.0",
"@helios-lang/ledger-shelley": "^0.1.5",
"@helios-lang/type-utils": "^0.2.8",
"@helios-lang/uplc": "^0.6.1"
}
}