-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.23 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.23 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
{
"name": "obsidian-confluence",
"version": "5.5.3",
"description": "This library allows you to publish your notes to Confluence",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && 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/",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"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": {
"@markdown-confluence/lib": "^5.5.1",
"@markdown-confluence/mermaid-electron-renderer": "^5.5.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.17.3",
"react": "^18.3.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}