-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.08 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
{
"name": "@kuestcom/clob-client",
"version": "6.0.11",
"description": "Typescript client for Kuest's CLOB",
"keywords": [
"blockchain",
"ethereum"
],
"homepage": "https://github.com/kuestcom/clob-client",
"bugs": {
"url": "https://github.com/kuestcom/clob-client/issues"
},
"license": "MIT",
"contributors": [
{
"name": "Jonathan Amenechi",
"url": "https://github.com/JonathanAmenechi"
},
{
"name": "Rodrigo Calvo",
"url": "https://github.com/poly-rodr"
},
{
"name": "Matt Walker",
"url": "https://github.com/mttwlkr"
},
{
"name": "Liam Kovatch",
"url": "https://github.com/l-kov"
},
{
"name": "Mike Shrieve",
"url": "https://github.com/mshrieve"
},
{
"name": "Danny Dresner",
"url": "https://github.com/ddresner-pm"
},
{
"name": "Bruno Maciel",
"url": "https://github.com/ibruno"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/kuestcom/clob-client.git"
},
"files": [
"/dist"
],
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.test.json --noEmit",
"test": "pnpm typecheck && vp test run --coverage",
"lint": "vp check",
"ci": "pnpm lint && pnpm test && pnpm build",
"deploy": "pnpm build && npm publish --access public --provenance",
"prepare": "vp config"
},
"dependencies": {
"@kuestcom/builder-signing-sdk": "^2.0.2",
"axios": "1.18.1",
"browser-or-node": "3.0.0",
"viem": "2.55.2"
},
"devDependencies": {
"@ethersproject/wallet": "^5.8.0",
"@types/node": "^26.1.1",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "catalog:",
"dotenv": "^17.4.2",
"ethers": "^6.16.0",
"typescript": "^7.0.2",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:",
"ws": "^8.21.0"
},
"engines": {
"node": ">=22.22.1"
},
"packageManager": "pnpm@11.21.0"
}