-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.43 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.43 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
{
"name": "llm-cache",
"version": "0.1.0",
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"description": "Semantic caching layer for LLM calls — embedding-based similarity caching with model versioning, use case segmentation, and cost tracking",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reaatech/llm-cache.git"
},
"homepage": "https://github.com/reaatech/llm-cache#readme",
"bugs": {
"url": "https://github.com/reaatech/llm-cache/issues"
},
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.22.0",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:coverage": "pnpm -r test:coverage",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.28.1",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "3.2.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"pnpm": {
"overrides": {
"fast-xml-parser@<5.7.0": ">=5.7.0",
"uuid@<14.0.0": ">=14.0.0"
}
}
}