-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 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
36
37
38
39
40
41
42
43
44
{
"name": "obsidian-confluence-sync",
"version": "0.1.0",
"description": "Obsidian plugin for syncing Confluence pages to local vault with ontology-based knowledge graph support",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "tsx test/integration/sync-test.ts"
},
"keywords": [
"obsidian",
"plugin",
"confluence",
"sync",
"knowledge-graph"
],
"author": "neocode24",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@types/turndown": "^5.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/ui": "^4.0.13",
"builtin-modules": "^3.3.0",
"esbuild": "0.19.9",
"obsidian": "latest",
"tslib": "2.6.2",
"tsx": "^4.20.6",
"typescript": "5.3.2",
"vitest": "^4.0.13"
},
"dependencies": {
"js-yaml": "^4.1.0",
"slugify": "^1.6.6",
"turndown": "^7.1.2"
}
}