-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.71 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"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",
"ajv-formats": "^3.0.1",
"colorette": "^2.0.20",
"columnify": "^1.6.0",
"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.7.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/ajv": "^1.0.0",
"@types/bun": "latest",
"@types/columnify": "^1.5.4",
"@types/node": "^20.12.7",
"json-schema-to-ts": "^3.0.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.5"
},
"engines": {
"bun": ">=1.1.2"
},
"exports": {
".": {
"import": "./dist/index.js"
}
},
"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",
"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"
},
"type": "module",
"version": "0.0.1"
}