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
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "@helios-lang/ledger-byron",
"version": "0.2.0",
"description": "Cardano ledger types for Byron era",
"type": "module",
"main": "src/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "pnpm run prettify && pnpm run build:types",
"build:types": "tsc -p jsconfig.json --noEmit false --emitDeclarationOnly",
"prettify": "prettier . --write",
"test": "pnpm run test:pretty && pnpm run test:types",
"test:pretty": "prettier . --check",
"test:types": "pnpm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HeliosLang/ledger-byron.git"
},
"keywords": [
"Cardano",
"blockchain",
"ledger",
"smart",
"contracts"
],
"author": "Christian Schmitz",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/HeliosLang/ledger-byron/issues"
},
"homepage": "https://github.com/HeliosLang/ledger-byron#readme",
"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"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"semi": false,
"singleQuote": false
}
}