-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "hiero-react",
"version": "0.2.1",
"description": "React hooks for reading data from the Hiero/Hedera network via the Mirror Node REST API",
"author": "imatthew55",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/imatthew55/hiero-react.git"
},
"keywords": [
"hiero",
"hedera",
"react",
"hooks",
"web3",
"blockchain",
"mirror-node",
"hcs"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"prepare": "npm run build",
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run lint && npm run build && npm test"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@testing-library/react": "^16.0.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.39.3",
"jsdom": "^24.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.56.0",
"vitest": "^1.0.0"
}
}