-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff2a5e8
commit 0bc4309
Showing
2 changed files
with
36 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
{ | ||
"author": "Richard Ayotte", | ||
"bugs": { | ||
"url": "https://github.com/RichAyotte/tezonator/issues" | ||
}, | ||
"contributors": [ | ||
{ | ||
"email": "[email protected]", | ||
"name": "Richard Ayotte" | ||
} | ||
], | ||
"dependencies": { | ||
"@richayotte/ini": "^4.1.7", | ||
"ajv": "^8.12.0", | ||
|
@@ -9,18 +18,20 @@ | |
"ora": "^8.0.1", | ||
"progress-estimator": "^0.3.1" | ||
}, | ||
"description": "Tezonator - A utility for building and managing Octez binaries for Tezos.", | ||
"devDependencies": { | ||
"@biomejs/biome": "1.6.4", | ||
"@total-typescript/ts-reset": "^0.5.1", | ||
"@types/ajv": "^1.0.0", | ||
"@types/bun": "latest", | ||
"@types/columnify": "^1.5.4", | ||
"@types/node": "^20.12.4", | ||
"@types/node": "^20.12.5", | ||
"json-schema-to-ts": "^3.0.1", | ||
"tsc-alias": "^1.8.8" | ||
"tsc-alias": "^1.8.8", | ||
"typescript": "^5.4.4" | ||
}, | ||
"engines": { | ||
"bun": ">=1.0.33" | ||
"bun": ">=1.1.2" | ||
}, | ||
"exports": { | ||
".": { | ||
|
@@ -30,16 +41,34 @@ | |
"files": [ | ||
"dist" | ||
], | ||
"homepage": "https://github.com/RichAyotte/tezonator?tab=readme-ov-file", | ||
"keywords": [ | ||
"baker", | ||
"blockchain", | ||
"cli", | ||
"command line", | ||
"cryptocurrency", | ||
"octez", | ||
"smart-contracts", | ||
"staking", | ||
"tezos" | ||
], | ||
"license": "GPL-3.0", | ||
"module": "index.ts", | ||
"name": "tezonator", | ||
"peerDependencies": { | ||
"typescript": "beta" | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/RichAyotte/tezonator.git" | ||
}, | ||
"scripts": { | ||
"compile": "bun build ./src/tezonator.ts --compile --outfile tezonator", | ||
"format": "biome format --write ./src; biome check --apply ./src", | ||
"lint": "biome check --apply ./src", | ||
"tc": "tsc --noEmit", | ||
"compile": "bun build ./src/tezonator.ts --compile --outfile tezonator" | ||
"tc": "tsc --noEmit" | ||
}, | ||
"type": "module", | ||
"version": "0.0.1" | ||
|