-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 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
{
"name": "@copilotkit/llmock",
"version": "1.0.0",
"description": "Deterministic mock LLM server for testing (OpenAI, Anthropic, Gemini)",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"llmock": "./dist/cli.js"
},
"files": [
"dist",
"fixtures"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"test": "vitest run",
"test:exports": "publint && attw --pack .",
"lint": "eslint .",
"format:check": "prettier --check .",
"release": "pnpm build && changeset publish",
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,mts,js,mjs,cjs,json,html,css,md}": "prettier --write",
"*.{ts,mts,js,mjs}": "eslint --fix"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.30.0",
"eslint": "^9.30.0",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.6.2",
"publint": "^0.3.12",
"tsdown": "^0.12.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.1"
}
}