-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 916 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 916 Bytes
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
{
"name": "confluence-cli",
"version": "3.1.2",
"description": "Confluence CLI tool with Claude Code skill integration",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/cli.js",
"dev": "npm run build && node dist/cli.js",
"test": "vitest"
},
"bin": {
"confluence": "./dist/cli.js"
},
"files": [
"dist"
],
"dependencies": {
"@mermaid-js/mermaid-cli": "^11.12.0",
"axios": "^1.6.0",
"commander": "^13.0.0",
"dotenv": "^16.4.0",
"form-data": "^4.0.5",
"puppeteer": "^23.11.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^4.0.18"
}
}