-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.45 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
{
"name": "mcp-tool-idempotency",
"version": "0.1.0",
"description": "Exactly-once execution for MCP tool calls (or any costly async op) via a two-layer idempotency store. Pluggable backend; MemoryBackend needs no infra.",
"keywords": [
"mcp",
"idempotency",
"exactly-once",
"deduplication",
"retry",
"tool-use",
"llm",
"postgres",
"typescript"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"migrations"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"example": "tsx examples/charge-once.ts",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.5",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"tsup": "^8.5.1",
"tsx": "^4.19.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vitest": "^3.0.5"
},
"packageManager": "pnpm@10.33.4",
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}