File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 22
22
node-version : ' latest'
23
23
registry-url : ' https://registry.npmjs.org'
24
24
25
+ - name : Check versions
26
+ run : |
27
+ bun --version
28
+ bunx tsc --version
29
+
25
30
- name : Install dependencies
26
31
run : bun install
27
32
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " hyperliquid-ts" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.0.0 " ,
4
4
"description" : " \uD83E\uDE96 Unofficial TypeScript SDK for Hyperliquid" ,
5
5
"main" : " dist/index.js" ,
6
6
"module" : " dist/index.js" ,
10
10
" dist"
11
11
],
12
12
"scripts" : {
13
- "build" : " bun build ./src/index.ts --outdir ./dist && tsc --emitDeclarationOnly --outDir dist" ,
13
+ "build" : " bun build ./src/index.ts --outdir ./dist && bun run tsc --emitDeclarationOnly --outDir dist" ,
14
14
"test" : " bun test" ,
15
15
"lint" : " bun eslint . --ext .ts" ,
16
16
"format" : " bun x prettier --write \" src/**/*.ts\" " ,
Original file line number Diff line number Diff line change 24
24
"declarationMap" : true ,
25
25
"sourceMap" : true ,
26
26
"esModuleInterop" : true ,
27
- "resolveJsonModule" : true
27
+ "resolveJsonModule" : true ,
28
+
29
+ "types" : [" bun-types" ]
28
30
},
29
31
"include" : [" src/**/*" ],
30
32
"exclude" : [" node_modules" , " dist" ]
You can’t perform that action at this time.
0 commit comments