-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 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
{
"name": "backlog-mcp-server",
"version": "0.7.0",
"type": "module",
"bin": {
"backlog-mcp-server": "./build/index.js"
},
"license": "MIT",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc && chmod 755 build/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --check \"**/*.{ts,tsx}\"",
"format:fix": "prettier --write \"**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit",
"typecheck:all": "tsc --noEmit --project tsconfig.test.json"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.0",
"backlog-js": "^0.16.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.5.0",
"env-var": "^7.5.0",
"graphql": "^16.11.0",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1",
"yargs": "^18.0.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@release-it/conventional-changelog": "^10.0.2",
"@types/node": "^22.14.1",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@typescript-eslint/utils": "^8.30.1",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"prettier": "^3.5.3",
"release-it": "^19.0.0",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vitest": "^4.0.0"
}
}