-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.71 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
{
"name": "context-markets",
"version": "0.7.0",
"description": "TypeScript SDK for Context prediction markets",
"homepage": "https://github.com/contextwtf/context-sdk#readme",
"bugs": {
"url": "https://github.com/contextwtf/context-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/contextwtf/context-sdk.git"
},
"license": "MIT",
"author": "Context",
"keywords": [
"prediction-markets",
"context",
"sdk",
"typescript",
"base",
"trading",
"web3",
"blockchain"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"generate": "bun scripts/generate-api.ts",
"generate:check": "bun run generate && git diff --exit-code src/generated/",
"publish:npm": "npm publish --registry https://registry.npmjs.org",
"publish:github": "npm publish --registry https://npm.pkg.github.com"
},
"dependencies": {
"viem": "^2.23.2"
},
"devDependencies": {
"openapi-typescript": "^7.13.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"module": "./dist/index.js"
}