-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.48 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.48 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
{
"name": "mcp-taskflow",
"version": "0.1.3",
"description": "MCP server for workflow orchestration, planning, and structured development",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"mcp-taskflow": "./dist/index.js"
},
"scripts": {
"build": "pnpm run clean && tsc",
"postbuild": "node scripts/copy-templates.mjs",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"audit": "pnpm audit --audit-level=moderate",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"start": "node dist/index.js",
"benchmark": "node benchmarks/run-benchmarks.mjs",
"fuzz:pathResolver": "jazzer tests/security/fuzz/pathResolver.fuzz.mjs",
"clean": "pnpm rimraf dist",
"changeset": "changeset",
"changeset:version": "changeset version",
"check": "changeset status"
},
"keywords": [
"mcp",
"model-context-protocol",
"task-management",
"research",
"ai-assistant"
],
"author": "Caleb German",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CalebGerman/mcp-taskflow.git"
},
"homepage": "https://github.com/CalebGerman/mcp-taskflow#readme",
"bugs": {
"url": "https://github.com/CalebGerman/mcp-taskflow/issues"
},
"packageManager": "pnpm@9.0.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.3.1",
"pino": "^8.21.0",
"pino-pretty": "^13.1.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
},
"devDependencies": {
"@jazzer.js/core": "^2.1.0",
"@types/node": "^20.19.30",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-security": "^3.0.1",
"prettier": "^3.8.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.0.17",
"@changesets/cli": "^2.27.11",
"rimraf": "^6.0.1"
},
"files": [
"dist",
"README.md",
"LICENSE.md",
"CHANGELOG.md",
"docs"
],
"publishConfig": {
"access": "public"
},
"pnpm": {
"overrides": {
"tar": "^7.5.7",
"@modelcontextprotocol/sdk": ">=1.26.0",
"axios": ">=1.13.5"
}
}
}