forked from Polymarket/clob-order-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.39 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.39 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
{
"name": "@dschz/polymarket-clob-order-utils",
"version": "0.2.1",
"description": "Typescript utility for creating orders for Polymarket's CLOB",
"author": "Daniel Sanchez <dsanc89@pm.me>",
"homepage": "https://github.com/dsnchz/polymarket-clob-order-utils",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dsnchz/polymarket-clob-order-utils.git"
},
"bugs": {
"url": "https://github.com/dsnchz/polymarket-clob-order-utils/issues"
},
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Daniel Sanchez",
"url": "https://github.com/dsnchz"
},
{
"name": "Liam Kovatch",
"url": "https://github.com/L-Kov"
},
{
"name": "Jonathan Amenechi",
"url": "https://github.com/JonathanAmenechi"
},
{
"name": "Rodrigo Calvo",
"url": "https://github.com/poly-rodr"
},
{
"name": "Mike Shrieve",
"url": "https://github.com/mshrieve"
}
],
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pkg:changeset": "changeset",
"pkg:version": "changeset version",
"pkg:publish": "bun run build && changeset publish",
"test": "bun test",
"test:cov": "bun test --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ethersproject/providers": "^5.8.0",
"@ethersproject/wallet": "^5.8.0",
"@metamask/eth-sig-util": "^5.0.0"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@tsconfig/strictest": "2.0.7",
"@types/bun": "1.3.1",
"@types/node": "22.18.4",
"@typescript-eslint/eslint-plugin": "8.46.2",
"@typescript-eslint/parser": "8.46.2",
"eslint": "9.35.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "16.4.0",
"jiti": "2.6.1",
"prettier": "3.6.2",
"tsup": "8.5.0",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "bun@>=1.3.0"
}