-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 863 Bytes
/
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
{
"name": "@tikz/hedera-mirror-node-ts",
"version": "3.0.0",
"repository": "TikZSZ/ts-hedera-mirror-node-wrapper",
"main": "./dist/index.js",
"devDependencies": {
"@hashgraph/sdk": "^2.49.2",
"@types/node": "^22.3.0",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5",
"axios": "^1.7.4"
},
"peerDependencies": {
"axios": "^1.7.4"
},
"description": "Typescript Hedera Mirror Node Rest API wrapper with complete declarative abstraction layer",
"keywords": [
"hedera",
"mirror-node",
"typescript",
"hashgraph",
"rest",
"mirror node"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"prepublish": "tsc",
"test": "vitest --run",
"test:dev": "vitest"
},
"types": "./dist/index.d.ts"
}