-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.12 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
{
"name": "pausemesh",
"version": "0.3.0-alpha.1",
"description": "Protocol-neutral durable pause and one-shot resume primitives for agent workflows.",
"author": "Antonio Antenore",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/aantenore/pausemesh#readme",
"bugs": {
"url": "https://github.com/aantenore/pausemesh/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aantenore/pausemesh.git"
},
"keywords": [
"agents",
"agentic-ai",
"mcp",
"a2a",
"ag-ui",
"durable-execution",
"continuations"
],
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.8.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./postgres": {
"types": "./dist/postgres.d.ts",
"import": "./dist/postgres.js"
}
},
"bin": {
"pausemesh": "./dist/cli.js"
},
"files": [
"dist",
"docs",
".env.example",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "pnpm clean:dist && tsc -p tsconfig.build.json",
"check": "pnpm lint && pnpm typecheck && pnpm test:coverage && pnpm build && pnpm test:package",
"clean:dist": "node scripts/clean-dist.mjs",
"dev": "tsx watch src/cli.ts serve",
"demo": "tsx examples/cross-protocol-demo.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepack": "pnpm build",
"start": "node dist/cli.js serve",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:package": "node scripts/package-smoke.mjs",
"test:postgres": "vitest run tests/postgres.integration.test.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ag-ui/core": "0.0.57",
"@hono/node-server": "2.0.10",
"hono": "4.12.31",
"pino": "10.3.1",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@types/node": "24.13.3",
"@types/pg": "8.20.0",
"@vitest/coverage-v8": "4.1.10",
"pg": "8.22.0",
"tsx": "4.23.1",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}