-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
34 lines (33 loc) · 1.04 KB
/
package.json
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
{
"name": "obsidian-confluence",
"version": "5.5.2",
"description": "This library allows you to publish your notes to Confluence",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc && node esbuild.config.mjs production",
"fmt": "npx prettier --write src/",
"lint": "eslint --ignore-path ../../.eslintignore --ext .jsx,tsx,.js,.ts src/",
"prettier-check": "npx prettier --check src/"
},
"keywords": [],
"author": "andymac4182",
"license": "Apache 2.0",
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/react-dom": "^18.0.11",
"obsidian": "1.1.1"
},
"dependencies": {
"confluence.js": "^1.6.3",
"mime-types": "^2.1.35",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"@markdown-confluence/lib": "5.5.2",
"@markdown-confluence/mermaid-electron-renderer": "5.5.2"
},
"resolutions": {
"prosemirror-model": "1.14.3"
}
}