-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@zeeg/dex",
"version": "0.16.0",
"description": "Task tracking tool with MCP server and CLI interfaces",
"repository": {
"type": "git",
"url": "https://github.com/dcramer/dex"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"dex": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release": "pnpm test && pnpm build && npm version",
"prepare": "simple-git-hooks"
},
"packageManager": "pnpm@10.28.0",
"engines": {
"node": ">=24.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@octokit/rest": "^22.0.1",
"@shortcut/client": "^3.1.0",
"nanoid": "^5.0.0",
"smol-toml": "^1.6.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^4.0.18",
"lint-staged": "^16.2.7",
"nock": "^14.0.10",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.5.0",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"pre-commit": "pnpm tsc --noEmit && pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write"
}
}