-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.64 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
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "atrib",
"description": "Verifiable agent actions. Every action becomes signed context for the next. Ed25519 signatures, Merkle log proofs, independently verifiable by anyone.",
"private": true,
"license": "Apache-2.0",
"homepage": "https://atrib.dev",
"repository": {
"type": "git",
"url": "https://github.com/creatornader/atrib"
},
"bugs": "https://github.com/creatornader/atrib/issues",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"typecheck": "turbo typecheck",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"doc-sync": "node scripts/check-doc-sync.mjs && node packages/integration/scripts/check-demo-record-surfaces.mjs && node scripts/check-local-substrate-coordinator-fixtures.mjs && node scripts/check-local-substrate-topology-report.mjs && node scripts/check-local-substrate-default-trial-measurement.mjs && node scripts/check-primitives-runtime-update.mjs",
"report:local-substrate": "node scripts/report-local-substrate-topology.mjs",
"measure:local-substrate": "node scripts/measure-local-substrate-default-trial.mjs",
"prove:local-substrate": "pnpm --filter @atrib/mcp build && pnpm --filter @atrib/emit build && node scripts/prove-local-substrate-process-health.mjs",
"update:primitives-runtime": "node scripts/update-primitives-runtime.mjs",
"metrics:npm-downloads": "node scripts/collect-npm-downloads.mjs",
"refresh:global-emit-cli": "node scripts/refresh-global-emit-cli.mjs",
"typos": "typos .",
"clean": "turbo clean",
"version-packages": "changeset version",
"release": "node scripts/check-release-publish-readiness.mjs && pnpm -r build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@eslint/js": "^10.0.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.5",
"tsx": "^4.23.1",
"turbo": "^2.10.5",
"typescript": "^7.0.2",
"typescript-eslint": "^8.64.0",
"vite": "8.1.5",
"vitest": "^4.1.10"
},
"pnpm": {
"overrides": {
"ip-address@<10.1.1": "^10.1.1",
"fast-uri@<3.1.2": "^3.1.2",
"hono@<4.12.25": "^4.12.25",
"qs@<6.15.2": "^6.15.2",
"uuid@<11.1.1": "11.1.1",
"langsmith@<0.6.0": "0.7.3",
"tar@<7.5.16": "7.5.16",
"protobufjs@<=7.6.2": "7.6.3",
"form-data@<2.5.6": "2.5.6",
"form-data@>=4.0.0 <4.0.6": "4.0.6",
"js-yaml@<=4.1.1": "4.2.0",
"ws@>=8.0.0 <8.21.0": "8.21.0",
"@opentelemetry/core@<2.8.0": "2.8.0",
"esbuild@>=0.27.3 <0.28.1": "0.28.1",
"undici@>=7.0.0 <7.28.0": "7.28.0",
"@tootallnate/once@<2.0.1": "2.0.1",
"@ai-sdk/provider-utils@<=3.0.97": "3.1.0-beta.9",
"@mastra/core>@ai-sdk/provider-utils-v5": "npm:@ai-sdk/provider-utils@3.1.0-beta.9",
"@cloudflare/vitest-pool-workers>zod": "^3.25.76",
"vite": "8.1.5",
"zod": "^4.4.3",
"@browserbasehq/stagehand>ai": "5.0.196"
},
"packageExtensions": {
"mem0ai@3.0.6": {
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
},
"pg": {
"optional": true
},
"redis": {
"optional": true
}
}
}
},
"peerDependencyRules": {
"allowedVersions": {
"pg": ">=8.11.3 <9"
}
},
"patchedDependencies": {
"@ai-sdk/provider-utils@3.1.0-beta.9": "patches/@ai-sdk__provider-utils@3.1.0-beta.9.patch",
"read-yaml-file@1.1.0": "patches/read-yaml-file@1.1.0.patch"
}
}
}