-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.57 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.57 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
{
"name": "claude-weeek",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.27.0",
"description": "WEEEK task tracker integration for Claude Code — read/write tools for AI coding agents",
"author": "Erik Codev <hello@notco.dev>",
"license": "MIT",
"homepage": "https://github.com/notcodev/claude-weeek#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/notcodev/claude-weeek.git"
},
"bugs": {
"url": "https://github.com/notcodev/claude-weeek/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"weeek",
"task-manager",
"task-tracker",
"ai-agents",
"claude",
"cursor",
"llm-tools"
],
"bin": {
"claude-weeek": "./dist/index.js"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"dist",
"plugin"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@notcodev/eslint": "^2.0.1",
"@notcodev/prettier": "^1.2.0",
"@types/node": "^22.0.0",
"eslint": "^9.39.2",
"prettier": "^3.5.3",
"tsdown": "^0.21.10",
"tsx": "^4.0.0",
"typescript": "^6.0.2",
"vitest": "^3.0.0"
}
}