-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.18 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
{
"name": "mostlyright-ts-workspace",
"version": "0.0.0",
"private": true,
"description": "Workspace root for the mostlyright TypeScript SDK packages. Public SDK covers weather data, forecasts, and prediction-market research. Not published.",
"homepage": "https://mostlyright.md/docs/sdk/",
"repository": {
"type": "git",
"url": "git+https://github.com/mostlyrightmd/mostlyright-sdk.git"
},
"bugs": {
"url": "https://github.com/mostlyrightmd/mostlyright-sdk/issues"
},
"packageManager": "pnpm@9.12.0",
"engines": {
"node": ">=20"
},
"scripts": {
"codegen": "pnpm -r run codegen",
"build": "pnpm --filter @mostlyrightmd/core run build && pnpm --filter @mostlyrightmd/weather run build && pnpm --filter @mostlyrightmd/markets run build && pnpm --filter mostlyright run build",
"test": "pnpm -r run test",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "pnpm -r run typecheck",
"size": "size-limit",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "pnpm run build && changeset publish",
"docs:ts": "pnpm run build && pnpm typedoc --options packages-ts/typedoc.json"
},
"size-limit": [
{
"name": "@mostlyrightmd/core (W1 surface, gzipped ESM)",
"path": "packages-ts/core/dist/index.mjs",
"limit": "25 KB"
},
{
"name": "@mostlyrightmd/weather (W1: AWC+CLI only, gzipped ESM)",
"path": "packages-ts/weather/dist/index.mjs",
"limit": "25 KB"
},
{
"name": "@mostlyrightmd/markets (W1: Kalshi NHIGH/NLOW, gzipped ESM)",
"path": "packages-ts/markets/dist/index.mjs",
"limit": "15 KB"
},
{
"name": "mostlyright meta (W1 subset, gzipped ESM)",
"path": "packages-ts/meta/dist/index.mjs",
"limit": "35 KB"
}
],
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "2.27.10",
"@size-limit/preset-small-lib": "11.1.6",
"@vitest/coverage-v8": "2.1.9",
"lefthook": "1.7.22",
"size-limit": "11.1.6",
"tsup": "8.3.5",
"typedoc": "^0.27",
"typedoc-plugin-markdown": ">=4.3 <4.5",
"typescript": "5.6.3",
"vitest": "2.1.9"
}
}