-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.98 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.98 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@copilotkit/aimock",
"version": "1.11.0",
"description": "Mock infrastructure for AI application testing — LLM APIs, MCP tools, A2A agents, AG-UI event streams, vector databases, search, and more. Zero dependencies.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CopilotKit/aimock"
},
"packageManager": "pnpm@10.28.2",
"engines": {
"node": ">=20.15.0"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./mcp": {
"import": {
"types": "./dist/mcp-stub.d.ts",
"default": "./dist/mcp-stub.js"
},
"require": {
"types": "./dist/mcp-stub.d.cts",
"default": "./dist/mcp-stub.cjs"
}
},
"./a2a": {
"import": {
"types": "./dist/a2a-stub.d.ts",
"default": "./dist/a2a-stub.js"
},
"require": {
"types": "./dist/a2a-stub.d.cts",
"default": "./dist/a2a-stub.cjs"
}
},
"./vector": {
"import": {
"types": "./dist/vector-stub.d.ts",
"default": "./dist/vector-stub.js"
},
"require": {
"types": "./dist/vector-stub.d.cts",
"default": "./dist/vector-stub.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"mcp": [
"./dist/mcp-stub.d.ts"
],
"a2a": [
"./dist/a2a-stub.d.ts"
],
"vector": [
"./dist/vector-stub.d.ts"
]
}
},
"bin": {
"aimock": "./dist/aimock-cli.js",
"llmock": "./dist/cli.js"
},
"files": [
"dist",
"fixtures",
".claude-plugin",
"skills"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:drift": "vitest run --config vitest.config.drift.ts",
"test:exports": "publint && attw --pack .",
"lint": "eslint .",
"format:check": "prettier --check .",
"release": "pnpm build && npm publish",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,mts,js,mjs,cjs,json,html,css,md}": "prettier --write",
"*.{ts,mts,js,mjs}": "eslint --fix"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@arethetypeswrong/cli": "^0.17.3",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.30.0",
"@google/generative-ai": "^0.24.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"openai": "^4.0.0",
"prettier": "^3.6.2",
"publint": "^0.3.12",
"tsdown": "^0.12.5",
"tsx": "^4.19.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.1"
}
}