-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 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
{
"name": "@hiveengine/hiveclient",
"version": "0.1.4",
"description": "Hive Blockchain client for Hive Engine projects.",
"repository": {
"type": "git",
"url": "git+https://github.com/hive-engine/hiveclient.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepack": "pnpm build",
"play": "jiti playground",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@noble/curves": "^1.5.0",
"@noble/hashes": "^1.5.0",
"@stylistic/eslint-plugin": "^2.7.2",
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"changelogen": "^0.5.5",
"eslint": "^9.9.1",
"eslint-plugin-perfectionist": "^3.3.0",
"jiti": "^2.0.0-beta.3",
"ofetch": "^1.3.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"unbuild": "^3.0.0-rc.7",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]",
"directories": {
"test": "test"
},
"author": "Reazul Iqbal",
"bugs": {
"url": "https://github.com/hive-engine/hiveclient/issues"
},
"homepage": "https://github.com/hive-engine/hiveclient#readme"
}