-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.06 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.06 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
{
"name": "@cueapi/cuechain",
"version": "0.0.3",
"description": "TypeScript primitive for verifying contracts between LLM pipeline steps. Typed inputs/outputs via Zod, quality gates with retry, and failure context that makes silent agent failure impossible.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"format": "biome format --write src/ tests/",
"ci": "pnpm typecheck && pnpm lint && pnpm test && pnpm build"
},
"keywords": [
"ai",
"agent",
"agents",
"ai-agents",
"agent-infrastructure",
"pipeline",
"contract",
"verification",
"typescript",
"zod",
"workflow",
"llm",
"llm-chain",
"llm-workflow",
"llm-observability",
"accountability",
"quality-gate",
"cueapi",
"claude",
"gpt",
"gemini"
],
"author": "Vector Apps Inc",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cueapi/cuechain.git"
},
"homepage": "https://cueapi.ai",
"bugs": {
"url": "https://github.com/cueapi/cuechain/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"zod-to-json-schema": "^3.24.0"
},
"peerDependencies": {
"zod": "^3.22.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^25.6.0",
"tsup": "^8.0.0",
"tsx": "^4.21.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0",
"zod": "^3.24.0",
"zod-to-json-schema": "^3.24.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
}
}