-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "hbar-kit",
"description": "TypeScript toolkit for verifying native Hedera payments (HBAR & HTS) and typed Mirror Node reads. Monorepo for @hbar-kit/core, /mirror, /payments.",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"coverage": "turbo run coverage",
"format": "prettier --write .",
"check:publish": "turbo run check:publish",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish",
"capture:fixtures": "tsx scripts/capture-fixtures.ts"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@changesets/changelog-github": "^0.5.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsup": "^8.3.0",
"turbo": "^2.3.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0",
"@vitest/coverage-v8": "^2.1.0",
"publint": "^0.2.0",
"@arethetypeswrong/cli": "^0.18.0"
}
}