-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.54 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
{
"name": "backlog-jira",
"version": "0.2.0",
"description": "Bidirectional sync plugin between Backlog.md and Jira via MCP",
"type": "module",
"author": "Emanuel Ciuca <emanuel.ciuca@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eciuca/Backlog.md-jira-plugin.git"
},
"bugs": {
"url": "https://github.com/eciuca/Backlog.md-jira-plugin/issues"
},
"homepage": "https://github.com/eciuca/Backlog.md-jira-plugin#readme",
"keywords": [
"backlog",
"jira",
"plugin",
"cli",
"sync",
"bidirectional",
"mcp",
"task-management",
"atlassian",
"project-management"
],
"bin": {
"backlog-jira": "dist/cli.js"
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "bun build --target=bun --external better-sqlite3 --external pino --external pino-pretty src/cli.ts --outdir=dist",
"dev": "bun run src/cli.ts",
"test": "bun test",
"test:integration": "./tests/integration/test-clean-install.sh",
"check": "biome check .",
"check:types": "bunx tsc --noEmit",
"prepublishOnly": "npm run build && npm run check && npm run test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.6.2",
"commander": "^12.0.0",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.0",
"@types/prompts": "^2.4.9",
"bun-types": "^1.3.0",
"typescript": "^5.2.2"
},
"engines": {
"bun": ">=1.0.0"
}
}