-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.81 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.81 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@sthype/sdk",
"version": "1.0.1",
"description": "TypeScript SDK for interacting with the staked HYPE (stHYPE) native Hyperliquid liquid staking protocol",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"generate-types": "ts-node scripts/generate-types.ts",
"postinstall": "husky install",
"release": "npm run build && standard-version",
"release:minor": "npm run build && standard-version --release-as minor",
"release:major": "npm run build && standard-version --release-as major",
"release:alpha": "npm run build && standard-version --prerelease alpha",
"release:beta": "npm run build && standard-version --prerelease beta",
"release:rc": "npm run build && standard-version --prerelease rc",
"postrelease": "git push --follow-tags origin main && npm publish"
},
"keywords": [
"Hyperliquid",
"sthype",
"staking",
"ethereum",
"web3",
"sdk"
],
"author": "stHYPE",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/thunderhead-labs/sdk-sthype.git"
},
"bugs": {
"url": "https://github.com/thunderhead-labs/sdk-sthype/issues"
},
"homepage": "https://github.com/thunderhead-labs/sdk-sthype#readme",
"dependencies": {
"viem": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"abitype": "^1.0.8",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"jest": "^29.5.0",
"lint-staged": "^15.5.1",
"pino-pretty": "^13.0.0",
"prettier": "^2.8.7",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"standard-version": {
"skip": {
"commit": true,
"tag": true
},
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Style"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "test",
"section": "Tests"
}
]
}
}