-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.33 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
{
"name": "levelfield",
"private": true,
"version": "0.1.0",
"description": "Structural information-asymmetry risk assessment for event contracts. Know who you're really betting against.",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "npm run test -w @levelfield/scoring && npm run test -w @levelfield/web",
"tracer": "tsx scripts/tracer.ts",
"probe": "tsx scripts/probe-dreamdex.ts",
"mcp": "tsx packages/mcp/src/server.ts",
"score:all": "tsx scripts/score-all.ts",
"sdk:crosscheck": "tsx scripts/sdk-crosscheck.ts",
"demo:agent": "tsx scripts/agent-demo.ts",
"validate": "tsx scripts/validate.ts",
"registry:deploy": "tsx scripts/deploy-registry.ts",
"registry:publish": "tsx scripts/publish-scores.ts",
"verify:onchain": "tsx scripts/verify-onchain.ts",
"typecheck:scripts": "tsc --noEmit -p tsconfig.scripts.json",
"typecheck": "npm run typecheck:scripts && npm run typecheck -w @levelfield/scoring && npm run typecheck -w @levelfield/mcp && npm run typecheck -w @levelfield/web",
"agreement": "tsx scripts/agreement.ts"
},
"dependencies": {
"@somnia-chain/markets-sdk": "^0.27.0",
"viem": "^2.55.19",
"@modelcontextprotocol/sdk": "^1.30.0"
},
"devDependencies": {
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}