-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.73 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.73 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
{
"name": "@versatly/workgraph",
"version": "3.2.2",
"description": "Agent-first workgraph workspace for multi-agent coordination with dynamic primitives, append-only ledger, and markdown-native storage.",
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "pnpm@10.26.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./mcp-server": {
"types": "./dist/mcp-server.d.ts",
"import": "./dist/mcp-server.js"
},
"./mcp-http-server": {
"types": "./dist/mcp-http-server.d.ts",
"import": "./dist/mcp-http-server.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./server-entry": {
"import": "./dist/server-entry.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./package.json": "./package.json"
},
"bin": {
"workgraph": "bin/workgraph.js"
},
"files": [
"dist",
"bin",
"README.md",
"SKILL.md"
],
"scripts": {
"build": "tsup --config tsup.config.ts",
"build:packages": "pnpm -r --if-present run build",
"typecheck": "tsc --noEmit",
"typecheck:packages": "pnpm -r --if-present run typecheck",
"test": "node scripts/run-tests.mjs",
"test:vitest": "vitest run --config vitest.config.ts",
"test:packages": "pnpm -r --if-present run test",
"demo:workspace": "pnpm run --silent build && node scripts/generate-demo-workspace.mjs /tmp/workgraph-obsidian-demo",
"demo:obsidian-setup": "pnpm run --silent build && node scripts/setup-obsidian-demo.mjs /tmp/workgraph-obsidian-demo",
"ci": "pnpm run typecheck && pnpm run typecheck:packages && pnpm run test && pnpm run build",
"prepublishOnly": "pnpm run ci"
},
"keywords": [
"workgraph",
"multi-agent",
"agent-coordination",
"ledger",
"markdown",
"primitives"
],
"author": "Versatly",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Versatly/workgraph.git"
},
"homepage": "https://github.com/Versatly/workgraph",
"bugs": {
"url": "https://github.com/Versatly/workgraph/issues"
},
"engines": {
"node": ">=18",
"pnpm": ">=10"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"commander": "^12.0.0",
"gray-matter": "^4.0.3",
"yaml": "^2.8.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@versatly/workgraph-mcp-server": "workspace:*",
"@types/node": "^20.11.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"tsup": "^8.5.1",
"typescript": "^5.3.3",
"vitest": "^1.6.1"
}
}