-
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.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.17 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": "marktaskdown",
"version": "1.0.2",
"description": "A lightweight CLI for task management based on Markdown files",
"license": "MIT",
"author": "MarkTaskDown Team",
"type": "module",
"main": "./dist/ui/cli/index.js",
"types": "./dist/ui/cli/index.d.ts",
"bin": {
"mtd": "./dist/ui/cli/index.js"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.map",
"!dist/tests"
],
"repository": {
"type": "git",
"url": "https://github.com/onlythepixel/marktaskdown.git"
},
"homepage": "https://github.com/onlythepixel/marktaskdown#readme",
"bugs": {
"url": "https://github.com/onlythepixel/marktaskdown/issues"
},
"keywords": [
"cli",
"task-management",
"markdown",
"productivity",
"todo",
"mcp",
"model-context-protocol"
],
"scripts": {
"build": "tsup",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"prepare": "husky",
"mcp": "node dist/index.js",
"release": "semantic-release",
"release:dry-run": "node scripts/test-release-config.js",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@inquirer/prompts": "^7.5.0",
"@modelcontextprotocol/sdk": "^1.11.1",
"commander": "^13.1.0",
"express": "^5.1.0",
"gray-matter": "^4.0.3",
"ink": "^5.2.0",
"react": "^18.3.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.25.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@types/express": "^5.0.1",
"@types/node": "^22.15.2",
"@types/react": "^19.1.2",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"node-fetch": "^3.3.2",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vitest": "^3.1.2"
}
}