-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.07 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.07 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
{
"name": "@polymarket/builder-signing-sdk",
"description": "Polymarket SDK for creating builder headers",
"version": "1.0.0",
"contributors": [
{
"name": "Jonathan Amenechi",
"url": "https://github.com/JonathanAmenechi"
}
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf dist && tsc",
"deploy": "npm run build && npm publish",
"test": "vitest run --coverage"
},
"dependencies": {
"axios": "^1.12.2"
},
"devDependencies": {
"@types/node": "^22.19.11",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.3.1",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}