-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.94 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.94 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
{
"name": "oti",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "OTI — Historical market analogue engine. Type a market event in plain English; get a one-page brief of three historical analogues, asset behaviour, flow patterns, failed obvious trades, and where consensus went wrong.",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"seed": "tsx scripts/seed.ts",
"embeddings": "tsx scripts/build-embeddings.ts",
"regime:centroids": "tsx scripts/build-regime-centroids.ts",
"refresh-prices": "tsx scripts/refresh-prices.ts",
"conformal": "tsx scripts/build-conformal-quantiles.ts",
"schema:export": "tsx scripts/export-event-schema.ts",
"validate-event": "tsx scripts/validate-event.ts",
"mcp:submission-pack": "tsx scripts/mcp-submission.ts",
"test": "node --import tsx --test --test-reporter=spec tests/**/*.test.ts",
"eval": "node --import tsx --test --test-reporter=spec tests/eval/*.test.ts -- --report",
"format": "prettier --write \"**/*.{ts,tsx,md,json,css}\""
},
"dependencies": {
"@ai-sdk/gateway": "^1.0.0",
"@atproto/api": "^0.13.0",
"@langfuse/otel": "^4.0.0",
"@langfuse/tracing": "^4.0.0",
"@opentelemetry/sdk-node": "^0.55.0",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@vercel/edge-config": "^1.4.0",
"@visx/curve": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/text": "^3.12.0",
"ai": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.38.0",
"geist": "^1.3.1",
"lucide-react": "^0.469.0",
"next": "^16.0.0",
"postgres": "^3.4.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"resend": "^4.0.0",
"sonner": "^1.7.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"eslint-config-next": "^16.0.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.59.2"
},
"engines": {
"node": ">=20.0.0"
}
}